vote up 0 vote down star

Is it possible with AS3 to prompt a file select screen to the user, get the selected file data and use it directly in the movie without the need to upload this file to the server first and then get it back? I want something like FileReference to enable the user to selected many image files then I want to display/manipulate these images directly in the movie.

flag

80% accept rate

2 Answers

vote up 1 vote down check

Native filesystem access is not permitted in Flash applications due to security issues. AIR bridges this gap while not compromising the security.

link|flag
Native filesystem access is permitted when using FileReference. I'm wondering if I can access the data directly before uploading it to the server. I don't want to directly access the filesystem, the user will select it, as with FileReference. – fromvega Mar 14 at 6:12
In flash, FileReference will only give you the filename, not the full path. Try it out. – dirkgently Mar 14 at 6:17
OK but I was wondering if there was another solution similar to FileReference, not FileReference itself. But it seems there isn't, right? – fromvega Mar 14 at 6:46
No. What you are trying to do is filesystem access -- a strict no-no. – dirkgently Mar 14 at 10:56
Isn't FileReference a filesystem access to? I'll be able to get the user file anyway sending it to the server. I just want to work with it in memory before sending to the server. – fromvega Mar 16 at 0:04
show 1 more comment
vote up 1 vote down

I heard that in flash player 10, you actually can do this. I have not tested it myself, but I've seen a couple of demo videos. Here's something that google found that might be relevant.

http://dynamicflash.com/2008/07/flash-player-10-local-file-access/

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.