Help in CacheAsBitmap

Hi

I have this code below:

private function onLoadImage(e:MouseEvent):void {
trace(“teste”);
var mc:MovieClip = MovieClip(e.currentTarget);
var bigholder:MovieClip = new MovieClip();
var array:Array = mc.array;
for (var i:int = 0; i < array.length; i++)
{
var bigmov:MovieClip = new MovieClip();
bigmov.cacheAsBitmap = true;
if (i == 0) { bigmov.name = “bodysketch”; }
var img:ImageLoader = new ImageLoader(array*, { width:455, height:600, container:bigmov, smoothing:true, scaleMode:“proportionalInside” } );
img.load();
bigholder.addChild(bigmov);
}
bigholder.cacheAsBitmap = true;
master.addChild(bigholder);
allMovies(bigholder);
}

I need make a cacheAsBitmap in a PNG image but doesn’t work, have something wrong with my code?

please someone help!!!:batman: