I am implementing a progress bar for my network uploads. I am using the “progress” event in network.request() to update the progress bar. However, I just get one progress event for most of my uploads which last multiple seconds.
Is there a way to control the frequency of these progress events? Or alternatively, is there a way to check the amount of data uploaded from a different thread (by directly accessing the network transaction from a enterframe listener)? Or do I need to implement network.request on my own?
Cheers!