/ Published in: ActionScript 3
I can never remember the simple code for quickly making a bitmap, so here it is.
Expand |
Embed | Plain Text
var bmpData:BitmapData = new BitmapData(800,800, true, 0x00000000); bmpData.draw (myClip); var bmp:Bitmap = new Bitmap(bmpData); this.addChild(bmp);
You need to login to post a comment.
