ActionScript 3 外部文件的加载方法

Posted

tags:

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

package {
	import flash.display.Sprite;
	import flash.display.Loader;//Allows you to load an external file
	import flash.net.URLRequest;//This is used to reference the external file
	import flash.filters.DropShadowFilter;
	
	public class LoadingMethods extends Sprite {		
		public function LoadingMethods(){
			init();
		}
		private function init():void {
			/**
			Loading
			*/
			var loader:Loader = new Loader();
			loader.load(new URLRequest("kitten.jpg"));
			addChild(loader);
			loader.x = 150;
			loader.y = 150;
			//For the loaded
			var ds2:DropShadowFilter = new DropShadowFilter(10, 45, 0x00ff00,1,3,2);
			var filterArray2:Array = [ds2];
			loader.filters = filterArray2;
			
			/**
			Embedding
			**/
			//This is from importing the image into the lib and exporting for AS.
			var myImage:Kitten = new Kitten();
			addChild(myImage);
			
			//For the embed
			var ds:DropShadowFilter = new DropShadowFilter(10, 45, 0xff0000,1,3,2);
			var filterArray:Array = [ds];
			myImage.filters = filterArray;
		}
	}
}

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

ActionScript 3 AS3 - 停止缓存的外部加载文件

ActionScript 3 AS3:加载外部txt文件

ActionScript 3 AS3加载外部XML文件

ActionScript 3 AS3从外部文本文件加载变量

ActionScript 3 AS3加载和使用外部CSS文件

ActionScript 3 AS3加载和播放外部FLV文件