Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I am completely new to flash. We need to load a binary file from the user system (must work in Flash 9) and do some process in flash and save it back to the file system. I think that this would have to be done by getting the file in JavaScript and then encoding it send it to Flash.

share|improve this question
The internets seem to imply to me accessing arbitrary local files is only available in Flash 10. – millimoose May 11 '09 at 16:32
yes, now I am using flash 10 for this problem. – MrJavaGuy May 14 '09 at 16:58

3 Answers

up vote 3 down vote accepted

Local file system access is in Flash 10 with the File Reference enhancements. You're out of luck if targetting Flash 9.

Javascript cannot access the local filesystem either.

share|improve this answer
so I found out. – MrJavaGuy May 14 '09 at 16:59

http://weblogs.macromedia.com/flashjavascript/
http://kb2.adobe.com/cps/156/tn_15683.html

Those are two good links reguarding javascript communications

share|improve this answer
thanks this helped me. – MrJavaGuy May 14 '09 at 16:59

alternatively, you can make a JavaScript Flash file and make a window SWF, which has full file access. However, this could never be used on the web

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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