hi,
I need to save the file in the particular directory.
i tried with the below code its working. but its opening the dialog box to choose the path wher the file to be saved.
var texT:String="Hi this to be saved";
var file:FileReference = new FileReference(); file.save(texT,"myfile12.Text");
But i need to save the file like this
var file:FileReference = new FileReference(); file.save(texT,"c:\ProjectFolder\XmlFile\myfile.Text");
Its not working. How to solve this this problem!!!!!!!!1
Thanks in Advance