[flexcoders] Thumbnail from screen (contents)

2009-03-01 Thread erikdebruin_nl
Hi all, I'm trying to find a way to construct thumbnails from the screens of my presentation tool. The application I'm working on takes an XML files, constructs screens with text, images and video from it's contents and displays these, much like PowerPoint would. I want to use thumbnails of the

Re: [flexcoders] Thumbnail from screen (contents)

2009-03-01 Thread Weyert de Boer
Hi Erik, You can easily make a screenshot of a MovieClip the following way: import flash.display.*; var thumbnailData: BitmapData = new BitmapData( slide._width, slide._height, true, 0xFF ); thumbnailData.draw( slide, new Matrix() ); After you made a screenshot of the movieclip or you