> 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 > 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? FileReferenceList contains a filelist property, which is an array of FileReference objects. You iterate through the array and call the upload method for each. Dave Watts, CTO, Fig Leaf Software http://www.figleaf.com/ Fig Leaf Software provides the highest caliber vendor-authorized instruction at our training centers in Washington DC, Atlanta, Chicago, Baltimore, Northern Virginia, or on-site at your location. Visit http://training.figleaf.com/ for more information! _______________________________________________ Flashcoders mailing list [email protected] http://chattyfig.figleaf.com/mailman/listinfo/flashcoders

