Getting all the text values in an XML node
suppose i've got xmllist i'm working way through , want , "text" node. in other works strip out <xmtag> mark , possible attributes , leave content.
is there easy/fast way that?
<mynode>
<title>the title of event here</title>
<presenter>name , title of presenter here</presenter>
<date starttime="somedate" />
<desc><![cdata[some text in here. <b>might</b> have html or links or such.]]></desc>
<resources>
<res>a list of resources, downloads, etc.</res>
<res>some other site or such</res>
</resources>
</mynode>
if xml xml instance, after loading complete:
trace(xml.descedants("*").text());
More discussions in ActionScript 3
adobe
Comments
Post a Comment