ActionScript 3 加载外部

Posted

tags:

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

function startLoad(){

    var mLoader:Loader = new Loader();
    var mRequest:URLRequest = new URLRequest("MouseActions.swf");
    mLoader.contentLoaderInfo.addEventListener(Event.COMPLETE, onCompleteHandler);
    mLoader.contentLoaderInfo.addEventListener(ProgressEvent.PROGRESS, onProgressHandler);
    mLoader.load(mRequest);

}
function onCompleteHandler(loadEvent:Event){
addChild(loadEvent.currentTarget.content);
}
function onProgressHandler(mProgress:ProgressEvent){

    var percent:Number = mProgress.bytesLoaded/mProgress.bytesTotal; trace(percent);

}
startLoad();

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

ActionScript 3 加载外部

ActionScript 3 从其他域加载外部swf

ActionScript 3 使用loader类加载外部swf

ActionScript 3 AS3加载外部文本文件

ActionScript 3 用于加载和预加载外部闪存或图像的通用类

ActionScript 3 AS3:加载外部txt文件