Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Grab a ProgressEvent from a POST upload in as3

Is there any way to track the status of a posted upload in AS3? There is a ProgressEvent, but it gives data back about the response, not the actual POST upload. I'm posting binary data for an image, so it's usually in the 50-100kb range.

The image data was generated inside Flash itself, so I can't use the upload method - at least as far as I know.

Thanks!

like image 501
Brent Avatar asked Sep 19 '08 03:09

Brent


1 Answers

Perhaps you can use a function at the server side to send progress events to the flash object?

like image 93
Eliram Avatar answered Oct 23 '22 20:10

Eliram