tags:

views:

43

answers:

2

how to write a file to File.applicationDirectory in flex. i am getting security filewrite resource error.

A: 

You can't use File.applicationDirectory in pure flex , it is ment to be used only in air applications. in flex you can use Filereference.save() which opens a dialog box where user can select the folder to save the file in.

Eran