[Flashcoders] grabbing bitmapdata from a vector movieClip...

2006-08-09 Thread keitai guy
Hi List - using the BitmapData class, its possible to read pixels from the screen, and save to a file. However, this only seems to read the pixels that you have drawn into the bitmap object. Is there anyway to capture the actual vector data on the screen? eg other movieclips etc. What i want

Re: [Flashcoders] grabbing bitmapdata from a vector movieClip...

2006-08-09 Thread Ricky Bacon
keitai guy wrote: What i want is a way to basically do a screen capture, outputting the SWF /flash data to a file. Use the draw method. Create a BitmapData object of the appropriate size and pass the clip you want as the first param. The best solution for client to data I've seen is from

RE: [Flashcoders] grabbing bitmapdata from a vector movieClip...

2006-08-09 Thread Bjorn Schultheiss
: [Flashcoders] grabbing bitmapdata from a vector movieClip... keitai guy wrote: What i want is a way to basically do a screen capture, outputting the SWF /flash data to a file. Use the draw method. Create a BitmapData object of the appropriate size and pass the clip you want as the first param. The best