How do I access the XML element data in AS3 when its has no tag

87 Views Asked by At

Here is the scenario:

OLD XML data was in the form of :

<data>
<![CDATA[[<span class='css'>SomeData XYZ</span>]]>
</data>

Now a sub element has cropped up in some of the data:

<data>
<![CDATA[[<span class='css'>SomeData XYZ</span>]]>
<subelement>
     SubData ABC
</subelement>
</data>

with the previous format you could get the "SomeData XYZ]]" using: myXML.data

However, now if one tries that you get the entire body within the data tag including the subelements.

I also tried just myXML.data.text but it returned nothing also tried .* (returned everything between data tags)

Stumped.

1

There are 1 best solutions below

1
On

You can access that link as the first child of myXML:

var someData:String = myXML.children()[0];

Edit: You said you tried myXML.data.text, if data is the root element, that won't work. You should try myXML.text(); That should return any text within the XML that's not part of a child-element.