Hyperlinks fra XML
Jeg prøver at hente nogen hyperlinks ind fra en XMl-fil og smide nodeValuen ind i et dynamisk tekstfelt.Mit XML:
_____________
<root>
<link>
<![CDATA[<a href="http://www.website.com">This is a hyperlink</a>]]>
</link>
</root>
Mit ActionScript:
_________________
myXML = new XML();
myXML.onLoad = showXML;
myXML.load("Content.xml");
myXML.ignoreWhite = true;
function showXML(success) {
if (success == true) {
output.text = myXML.firstChild.firstChild.firstChild.nodeValue;
}
}
Mit output bliver (ren tekst): <a href="http://www.website.com">This is a hyperlink</a>
Hvad går der galt?