It seems that there is no xml parsing tool in available JSFL (Adobe Flash-extension Javascript script file) : http://osflash.org/pipermail/flashextensibility%5Fosflash.org/2006-July/000014.html

So, is there an easy and cross-platform way to add a javascript xml parser?

link|improve this question

75% accept rate
feedback

5 Answers

If JSFL uses ActionScript at some point, you can just do XML(xml_string) or XMLList(multiple_xml_nodes_string) as long as it's ActionScript 3.0 or higher. ActionScript 3.0 supports E4X witch is native XML in ECMAScript.

link|improve this answer
I'll try this once back to work but I don't think it will work as jsfl files are Javascript and not ActionScript files. Lot of similarities but differences too. I'll try anyway and report then. – Klaim Oct 2 '09 at 22:04
1  
@Klaim u can parse xml with e4x using jsfl ( robertpenner.com/flashblog/2007/08/… ) – George Profenza Aug 31 '10 at 18:44
feedback

I know this is an old question, but I was looking for a solution to this problem as well (using Flash CS3). I needed to parse XML from a data file on disk. Combining the suggestion of George Profenza I was able to get it to work with using eval(). The key is to remove the first line (the xml declaration):

xmlData = eval( FLfile.read( xmlFile ).split( '\n' ).slice( 1 ).join( '\n' ) );

... and you're good to go!

link|improve this answer
feedback

Well, you can use XML and E4X straight from JSFL using Flash CS3 or newer as the Javascript engine got upgraded to 1.6

Here's a quick snippet that loops through elements in the current selection and traces xml:

var doc = fl.getDocumentDOM();//get the current document ref.
var selection = doc.selection;//get the selection
var layout = <layout />;//create the root node for our xml
var elementsNum = selection.length;//store this for counting*
for(var i = 0 ; i < elementsNum ; i++){
   layout.appendChild(<element />);//add an element node
   layout.element[i].@name = selection[i].name;//setup attributes
   layout.element[i].@x = selection[i].x;
   layout.element[i].@y = selection[i].y;
}
fl.trace(layout);
link|improve this answer
feedback

What works nicely for me is just creating a SwfWindow. Working in JSFL is nice and fast because you can change out the file without having to restart Flash, but often ActionScript gives you more power.

My current project does a couple tricks:

  1. I will create objects in JSFL and then convert them to XML. I have to serialize them from Object format into a string which I pass to the SwfWindow (Panel). From the Panel, I take the String can convert it into XML. Then you can do anything you want in Actionscript 3.0.

  2. If I just have XML manipulation, I will prompt the User for a XML files path in JSFL code, but hand the URL directly to the Panel, and have the Panel just load the XML directly.

  3. Finally. For saving the XML, I will have to convert the XML to string via, 'xml.toXmlString()', but you also need to remove the '\n' so that you can hand the data to JSFL. I will strip out the '\n' for '|' or whatever you like. Then pass the string to JSFL, and you then can deserialize the string and change the '|' back to '\n' and save the file. Either using the older 'Save Output Panel' method, or using the newer File Write method.

Hope that helps.

link|improve this answer
I used to do that too, but I find it easier to use XML/E4X in JSFL just I would use in as3.0. xml.toXmlString() helps getting things back and forth without using Object – George Profenza Nov 12 '10 at 20:55
I've noticed that JSFL tends to be super slow, which I why I prefer using AS3 and a SwfWindow. But to be honest, these's days I have been writing more tools in Air. – Infinite Feb 18 '11 at 6:37
feedback
function parseXML (xml) {
    try { // normal browsers
    	return (new DOMParser()).parseFromString(xml, "application/xml");
    }
    catch (e) { // IE
    	var xmlDoc = new ActiveXObject("Microsoft.XMLDOM");
    	xmlDoc.async = "false";
    	xmlDoc.loadXML(xml);
    	return xmlDoc;
    }
}

You might want to read more on DOMParser and the Microsoft.XMLDOM ActiveX object.

link|improve this answer
Sorry but that's what I wanted to do before searching for another solution : DOMParser class don't exist in JSFL and I'm doing a cross-platform script so using ActiveX is not allowed. – Klaim Oct 1 '09 at 19:50
feedback

Your Answer

 
or
required, but never shown

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