ActionScript 3 加载xml

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了ActionScript 3 加载xml相关的知识,希望对你有一定的参考价值。

var myXML:XML;
var myLoader:URLLoader = new URLLoader();
myLoader.load(new URLRequest("config.xml"));
myLoader.addEventListener(Event.COMPLETE, processXML);

function processXML(e:Event):void {

    myXML = new XML(e.target.data);
    trace(myXML);

}

以上是关于ActionScript 3 加载xml的主要内容,如果未能解决你的问题,请参考以下文章

ActionScript 3 加载xml

ActionScript 3 AS3:XML加载

ActionScript 3 加载多个XML文件

ActionScript 3 xml加载器类

ActionScript 3 XML加载器

ActionScript 3 加载XML