Another question regarding FalconJX: How easy will it be to handle xml literals? The most straightforward way I can think of that would be to convert: var myXML:XML = <root><node name=“fred”/><node name=“John”/></root>; into var myXML:XML = new XML("<root><node name=\“fred\”/><node name=\“John\”/></root>”);
Right now I’m left with three open questions: 1. Will it be hard to convert XMLList.length() into XMLList.length 2. How can we deal with “delete” in the context of XML 3. How to deal with XML literals