Howdy, Stranger!

It looks like you're new here. If you want to get involved, click one of these buttons!

Bug with onProgress event?
  • I am relatively new to Uploadify, so I hope I won't make a fool of myself... but I made a form where you can upload files, one by one, and there's a new div and progress bar created for each download, like Youtube.

    In the onProgress event, I use the queueID to update the proper progress bar.

    The problem is that it seems that even after downloads are finished and successful, onProgress is called for *every* queueID you upload so far... what's worse, the percentage seems to be all equal, so if I have 3 old files + the new one, I'll get 4 onProgress events, with different queueID but the same percentage... so my 4 progress bars will be updated.

    For some reason, Uploadify keeps in memory the old queueID that were uploaded and strangly sends the onProgress for them. I tried clearing the Uploadify queue with uploadifyClearQueue() after *each* upload to no avail, onProgress is still called for each queueID uploaded so far.

    Any idea?