XML_flash_links_?
XML_flash_links_?
Out of context: Reply #5
- Started
- Last post
- 12 Responses
- unfittoprint0
let's just say then when you parse the XML you would do something like:
myXML.onLoad = function(success){
if(succes){
content = this.firstChild.childNodes
for (i=0; i { content.length; i++){
textBox.htmlText += content[i].nodeValue;
textBox.htmlText +="{BR}";
//link
textBox.htmlText +="{a href='" + content[i].attribute.link+'}go to link {/a}";
textBox.htmlText += "{BR}{BR}";
}
} else {
trace("error");
}
}