The file reference has an upload, the list is just an array of fileReference Objects. You would step through your list uploading file by file (better for handling errors vs. success than to just loop them).
something like: file = fileList[i] file.upload(url) B. On Fri, May 15, 2009 at 11:19 AM, Paul Freedman <[email protected]> wrote: > I haven't had to build ftp functionality in years. I hope someone is familiar > with the problem and can address this simply. > > The class FileReference allows the user to browse to and select one file, and > the class FileReferenceList allows for the selection of multiple files. But > only FileReference has an upload() function. > > How do you upload (or download, for that matter) using FileReferenceList? > > _______________________________________________ > Flashcoders mailing list > [email protected] > http://chattyfig.figleaf.com/mailman/listinfo/flashcoders > _______________________________________________ Flashcoders mailing list [email protected] http://chattyfig.figleaf.com/mailman/listinfo/flashcoders

