Wednesday 19 December 2012

How to convert movie clip to bitmap in action script 3.0


var bitmapInfo:BitmapData = new BitmapData(myClip.width,myClip.height);
bitmapInfo.draw(myClip);
var bm:Bitmap = new Bitmap(bitmapInfo);
addChild(bm);



No comments:

Post a Comment