ActionScript 3 xml加载器类
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了ActionScript 3 xml加载器类相关的知识,希望对你有一定的参考价值。
package code.utils {
import flash.events.Event;
import flash.events.IOErrorEvent;
import flash.net.URLRequest;
import flash.net.URLLoader;
public class LoaderXml {
public static function load(url:String, completeFun:Function, errorFun:Function = null){
var loadXml:URLLoader = new URLLoader();
loadXml.addEventListener(Event.COMPLETE, completeFun);
errorFun == null ? null : loadXml.addEventListener(IOErrorEvent.IO_ERROR, errorFun);
loadXml.load(new URLRequest(url));
}
}
}
以上是关于ActionScript 3 xml加载器类的主要内容,如果未能解决你的问题,请参考以下文章
ActionScript 3 声音管理器类
ActionScript 3 使用文件参考API的AS3文件参考管理器类
ActionScript 3 加载xml
ActionScript 3 基本的外部XML加载器
ActionScript 3 加载xml
ActionScript 3 AS3:XML加载