I am trying to write a local file with Flash Player 10+ using the FileReference class, following the format from this blog post by Mike Chambers: http://www.mikechambers.com/blog/2008/08/20/reading-and-writing-local-files-in-flash-player-10/

Essentially the code is this:

private function onSaveButtonClick(event:MouseEvent):void{      
    fr = new FileReference();
    fr.save(fileToSave);}

It works fine locally on my machine but when used online, it doesn't bring up the save file dialogue when the save button is clicked. I assume this is some sort of permissions or security related issue?

link|improve this question

Do you have an example running on a server? There's nothing that I know of that restricts FileReference.save when executing from a server, so a running example would be helpful. – TheKaneda Feb 7 at 19:12
It works when I run it on a localhost server but not on my online server – Steven Feb 8 at 6:40
What is fileToSave? Do onFileSave, onCancel or onSaveError trace anything – Eugeny89 Feb 9 at 13:03
@Eugeny89 I debugged it more and it looks like its actually a crossdomain flash security issue related to getting an image from S3 to create a bitmap out of. I've created a new question at stackoverflow.com/questions/9217973/… – Steven Feb 9 at 20:11
feedback

1 Answer

Your instance of FileReference might be garbage collected. Same happens with file upload.

Try to move it to instance variable:

private var fr = new FileReference();
private function onSaveButtonClick(event:MouseEvent):void{      

    fr.save(fileToSave);
}
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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