Copy link to clipboard
Copied
Copy link to clipboard
Copied
Copy link to clipboard
Copied
Copy link to clipboard
Copied
This thread is from so long ago, but it deals with my issue so I'm resurrecting it.
I'm using flash cc. I want a screen capture of the stage. I've input the above code into the frame which I want captured. The code appears to work. I can even see the little animation showing that the screen has, indeed, been captured. But then I can't find the bit map. It doesn't appear in the time line, nor the library, nor the folder where the .fla is stored.
What am I missing?
Copy link to clipboard
Copied
You're not missing anything actually - the bitmap in question is created at runtime, and then is disposed of when you press stop. If you want to save the capture to a file you can do that - just Google 'as3 save bitmapdata file' and you should find a lot.
Copy link to clipboard
Copied
Ok thanks Dmennenoh. I had the impression that the AS in question would automatically save the captured bitmap as a usable jpeg in the library (which is what I wanted). In the "modify" menu there is an option to "convert to bitmap" whatever is selected on the stage which does automatically produce a usable image in the library (which is also generically titled "bitmap") so I think that's where my confusion came in. Thanks for clarifying that there are some extra steps to achieve that goal with the AS. I'll research it.