up vote 1 down vote favorite
share [g+] share [fb]

In actionscript 3 is it possible to allow a user to upload an image into a flash movie at runtime without POSTing to a PHP script? I dont want to export the image or save it anywhere I just want to be able to display the image in the flash movie

fingers crossed

link|improve this question

feedback

3 Answers

up vote 2 down vote accepted

Yes, you can if you are targeting Flash Player 10. Use the FileReference.load() method. Once the file is loaded, you can access to the raw data as a ByteArray, using the data property. In flex you can pass that to an Image component. In plain Actionscript, you can use the Loader.loadBytes() method to the display the loaded image.

link|improve this answer
feedback

This feature has just been added in Flash Player 10 / Flash CS4, so if you can use that you can do it.

link|improve this answer
feedback

The flash developer at work, seems to believe that it is not possible. That said you don't have to use PHP, you could use any server side technology that allows uploading (ASP.NET, Python, etc)

link|improve this answer
It is possible in flash player 10 which is newly released – JohnB Nov 21 '08 at 12:05
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.