Whilst i have got the single file upload working i am having problems understanding the multiple file uploads.

I can get the browsing for multiple fiels working fine using this:

fileReflist = new flash.net.FileReferenceList ();
fileReflist.addListener (fileUploadmulti);

onBrowselst = function () {
fileReflist.browse();
};

browsemulti.addEventListener ('click', onBrowselst);

What i don't understand is the information being returned and how to turn it into individual files for use in php.

Anybody out there been playing around with this??

Cheers