Re: [Flashcoders] Dynamic Images and the Library

2009-05-03 Thread Karl DeSaulniers
...@designdrumm.com To: Flash Coders List flashcoders@chattyfig.figleaf.com Sent: Sunday, May 03, 2009 5:30 AM Subject: Re: [Flashcoders] Dynamic Images and the Library Thanks Ashim. I will try that. Sent from losPhone On May 2, 2009, at 10:06 PM, Ashim D'Silva as...@therandomlines.com wrote: If you're

Re: [Flashcoders] Dynamic Images and the Library

2009-05-03 Thread Eric E. Dolecki
, 2009, at 12:19 AM, Muzak wrote: Google for JPEGEncoder and/or PNGEncoder. - Original Message - From: Karl DeSaulniers k...@designdrumm.com To: Flash Coders List flashcoders@chattyfig.figleaf.com Sent: Sunday, May 03, 2009 5:30 AM Subject: Re: [Flashcoders] Dynamic Images and the Library

Re: [Flashcoders] Dynamic Images and the Library

2009-05-02 Thread Karl DeSaulniers
The more I thought about it the more I came to think this would be a silly way about doing this, so I am wondering instead, is there a way to save the contents of an MC as a new image, say, on a server and have it then listed in a dynamically drawn XML file for later use? This may be a

Re: [Flashcoders] Dynamic Images and the Library

2009-05-02 Thread Ashim D'Silva
If you're dynamically loading an image, it doesn't have to be an mc, it's bitmap data and can be treated so. If you want to save the contents of an mc to an image, use bitmapData.draw(mc) to get bitmapData and write that to a jpeg/png on your server. You should be able to find a tutorial that

Re: [Flashcoders] Dynamic Images and the Library

2009-05-02 Thread Karl DeSaulniers
Thanks Ashim. I will try that. Sent from losPhone On May 2, 2009, at 10:06 PM, Ashim D'Silva as...@therandomlines.com wrote: If you're dynamically loading an image, it doesn't have to be an mc, it's bitmap data and can be treated so. If you want to save the contents of an mc to an image,

Re: [Flashcoders] Dynamic Images and the Library

2009-05-02 Thread Muzak
Google for JPEGEncoder and/or PNGEncoder. - Original Message - From: Karl DeSaulniers k...@designdrumm.com To: Flash Coders List flashcoders@chattyfig.figleaf.com Sent: Sunday, May 03, 2009 5:30 AM Subject: Re: [Flashcoders] Dynamic Images and the Library Thanks Ashim. I will try

[Flashcoders] Dynamic Images and the Library

2009-05-01 Thread Karl DeSaulniers
Hello all, Is there a way to get a dynamically loaded image to be inserted into the library of the SWF? For instance. I have an upload form that creates a preview image of what is being uploaded. I want the preview that is created of the image to be the thumbnail of the image once displayed