I need to create an application where I can add files for upload. As I add items for upload, a progressbar should be displayed along with each item added. And when I click f
Here are two great examples of Flex file uploaders (using HTTP):
alt text http://blog.vixiom.com/uploads/merb_air_upload.png
In order to make the above two examples work together to achieve the desired result (multiple file uploader, one ProgressBar per preloader, in Flex), all you need to do is:
src/UploadProgressComponent.mxml for now).FileUpload.mxml in the Flex File Uploader PHP Project.Replace this:
with this:
The result: Multiple file uploader in Flex, with a custom ItemRenderer that has a ProgressBar for each FileReference. Uploads to a PHP script, which you can swap out for anything.
Should be very easy to customize from there. Let me know if that works, Lance