0

I load external SWF with help MovieClipSWFLoader and add them to scene with addElement. So I know about frames total count and can navigate using nextFrame/prevFrame. I need to create panel with thumbnails which contains preview for each frame. How I can get each frame from MovieClip and store in array for example?

SoWa
  • 314
  • 4
  • 12

1 Answers1

0

You should create a BitmapData object for each preview. Just iterate through each frame in your MC and use myBitmapData.draw(mc). Then create bitmaps: new Bitmap(myBitmapData); from each BitmapData and put them into your panel.

Ivan Kuckir
  • 2,327
  • 3
  • 27
  • 46
  • Thank you! I iterate MovieClip frames and do bitmap for each frame and it works perfectly! – SoWa Aug 27 '12 at 08:17