ActionScript 3 预加载器和进度结构

Posted

tags:

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

var loader:Loader = new Loader();
var request:URLRequest;
var percent:Number;

prelo("path_to_a_file");  //// function that starts loading passed item

function prelo(path:String):void
{
	request = new URLRequest(path);
	loader.load(request);
	addChild(loader);
	
	loader.contentLoaderInfo.addEventListener(Event.COMPLETE, onLoaded);
	loader.contentLoaderInfo.addEventListener(ProgressEvent.PROGRESS, showProgress);
}

function showProgress(event:ProgressEvent):void /////////////  display progress animation
{
			percent = Math.round((event.bytesLoaded / event.bytesTotal )*100 );
	///////// if text file used
		  //PercentText.text = percent + "%";
}

function onLoaded(event:Event):void    /////////// when content is loaded
{
	/// content loaded !!!

}

以上是关于ActionScript 3 预加载器和进度结构的主要内容,如果未能解决你的问题,请参考以下文章

ActionScript 3 AS3:预加载器

ActionScript 3 绘制圆预加载器

ActionScript 3 AS3:预加载器代码

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

ActionScript 3 Oman3D - 简单预加载器

ActionScript 3 AS3:第1帧上的预加载器