Re: [Flashcoders] Getting File name when using ReferenceList

2006-04-12 Thread Yves Peckstadt
Hi Martin, You can't get the server file name from the fileReference object due too security issues I think. You can do an easy work around though. What I do is : I upload the file to a temporary folder. After the onComplete event I do a service call (in my case coldfusion cfc) which will handl

[Flashcoders] Getting File name when using ReferenceList

2006-04-05 Thread Martin Tremblay
Hi, I'm uploading an image using FileReference::upload. My php file which handle the actual file is placing the file in the appropriate folder and rename the file. My question is: How can I retrieve the new name using the callback provided with the FileReference method ? Martin