txt[0] = "Board";
txt[1] = "Link";
txt[2] = "Contact";
//建立xml对象
var myxml = new XML();
var main:MovieClip = this;
//加载xml文件
myxml.load("xml090403.xml");
//忽略空格
myxml.ignoreWhite = true;
myxml.onLoad = function(success) {
node = this.firstChild.childNodes;
textNum = node.length;
for (i=0; i<textNum; i++) {
txt[i] = String(myxml.childNodes[0].childNodes[i].childNodes[0].childNodes[0]);
}
};
上面我定义了,txt[i],然后想用从xml 读出来的值赋给它,可是不成功。
flash上显示的值还是最上面定义的那个。
怎么样解决好,谢谢关注此问题的人,折腾两天了。