Hi,
How do we save file locally in Flash (ActionScript 3) without displaying dialog.
I know we can use the following code to save file locally but it prompts Save dialog. I don't want this dialog while saving file locally.
var fs: FileReference = New FileReference(); fs.save(data,filename);
Please tell me the solution. Many Thanks in Advance.