
Код:
var newsXML:XML = new XML();
newsXML.ignoreWhite = true;
var output:String = "";
newsXML.onLoad = function(success) {
if (success) {
var news:Array = newsXML.firstChild.childNodes;
_root.createEmptyMovieClip("txt_mc",0);
for(i=0;i<news.length;i++) {
output += "<b>";
output += news[i].childNodes[0].firstChild.nodeValue;
output += "</b> - <i>";
output += news[i].childNodes[1].firstChild.nodeValue;
output += "</i>";
}
txt_mc.createTextField("txt_name" , 1, 0, 0, 150, 10);
txt_mc.txt_name.html = true;
txt_mc.txt_name.htmlText = output;
trace(output);
//txt_mc.txt_name.url = news[i].childNodes[2].firstChild.nodeValue;
}
}
newsXML.load("news.xml");