So, I have a flash application that handles several client profiles for a company. Whenever a new client profile is created, it saves a new XML file localy. My problem is that instead of doing a "silent" file creation, a window pops up just like doing a "Save As" as to confirm that the file is being saved on disk and which name should it be.

Is there a way to do a file save within flash without it calling out that window? If so, would it be possible to link me to an example of it?

Here is an example of my code:

var xmltosave:XML = new XML ( "<?xml version=&quot1.0&quot encoding=&quotutf-8&quot?><cliente><id>"+idfield.text+"</id><nome>"+nomefield.text+"</nome><tipo>"+tipofield.text+"</tipo><empresa></empresa><email>"+emailfield.text+"</email><contacto>"+contacto1field.text+"</contacto><contacto2>"+contacto2field.text+"</contacto2><profissao></profissao><datainscricao>"+datafield.text+"</datainscricao><dataalteracao></dataalteracao><notas></notas><notas2></notas2><notas3></notas3></cliente>");

var file:FileReference = new FileReference;
var filepath:String = new String(idfield.text + ".xml");
file.save( xmltosave, filepath );

Also, I know that the xmltosave is very long, is it possible to do line breaks in AS3 code?

Thank you. Marco Roberto.

NOTE: I know that I should use a php script to manage files, but unless that php is able to run locally without any server installs, like XAMPP, im not interested in using it. This is a small project and I just need to handle XML files. Unless its absolutely impossible to do it without PHP scripts, I would prefer a AS3 solution.

link|improve this question

Is this a web application or desktop application? – Taurayi Sep 11 '11 at 16:51
Desktop application. – Marco Fox Sep 11 '11 at 16:55
feedback

1 Answer

up vote 1 down vote accepted

since you're building a desktop application you can use flash.filesystem.File, which is part of the AIR SDK, to save files as a background process.

link|improve this answer
I'm sorry, but i'm not familiar with AIR, can I implement it in my flash application without having to mess around too much with the code? – Marco Fox Sep 11 '11 at 18:59
the File class requires AIR. i assumed you were programming with AIR since you were building an application with ActionScript 3.0 for desktop. how are you creating your desktop application? are you simply distributing a standalone .swf file? – TheDarkIn1978 Sep 11 '11 at 22:31
Yes. It does have a explanation, however. It started as a web application using php, but since im a newby programmer, I couldn't handle a lot of the stuff in php. Then my boss said there would be no problem in using XML files to have a stand alone local program, as long as it was working properly. Thus I decided to switch to XML. I know, its a bit messy. – Marco Fox Sep 16 '11 at 8:55
feedback

Your Answer

 
or
required, but never shown

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