// create a clip to hold the image
this.createEmptyMovieClip("imageHolder", 1);
// load the image.
imageHolder.loadMovie("grayq3-15.jpg");
// manipulate the clip as usual (e.g., this sets it to half size)
imageHolder._xscale = 50;
imageHolder._yscale = 50;