2006 02-28
评论(0)
//copyright by webstudio.com.cn 2005.04.24
System.useCodepage=true;
Stage.scaleMode = "noscale";
myXML = new XML();
myXML.ignoreWhite = true;
// 创建一个动态文本
createTextField("mytext", this.getNextHighestDepth, 10, 10, "350", "250");
mytext.html = true;
mytext.multiline = true;
mytext.wordWrap=true;
//mytext.autoSize = true;
myXML.onLoad = function(succes) {
if (succes) {
var parent = this.firstChild.childNodes;
trace(parent);
title = parent[0].firstChild.nodeValue;
categoria = parent[1].firstChild.nodeValue;
list = parent[2].firstChild.nodeValue;
mytext.htmlText = title;
mytext.htmlText += categoria;
mytext.htmlText += list;
}
};
//载入xml
myXML.load("http://www.webstudio.com.cn/wsswf/flashxmlcdata/myxml.xml");
[flash]http://www.webstudio.com.cn/wsswf/flashxmlcdata/flash.swf,400,300[/flash]
详情和源文件:这里