[Flashcoders] FileReferenceList - no upload function?

2009-05-15 Thread Paul Freedman
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

Re: [Flashcoders] FileReferenceList - no upload function?

2009-05-15 Thread Dave Watts
I haven't had to build ftp functionality in years. I hope someone is familiar with the problem and can address this simply. FileReference doesn't do FTP uploads, to the best of my knowledge, only HTTP uploads. The class FileReference allows the user to browse to and select one file, and

Re: [Flashcoders] FileReferenceList - no upload function?

2009-05-15 Thread Steven Sacks
http://74.125.155.132/search?q=cache:Z9ZpwotYRtkJ:www.mikestead.co.uk/2009/01/04/upload-multiple-files-with-a-single-request-in-flash/+AS3+Socket+send+progress+brokencd=3hl=enct=clnkgl=usclient=firefox-a On May 15, 2009, at 11:19 AM, Paul Freedman wrote: I haven't had to build ftp

Re: [Flashcoders] FileReferenceList - no upload function?

2009-05-15 Thread Bob Wohl
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,