ActionScript 3 AS3:加载外部.txt和.css

Posted

tags:

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

/***************************************
Initialize Variables
***************************************/
var tf:TextField = new TextField();
	tf.width = stage.stageWidth;
	tf.height = stage.stageHeight;
	addChild(tf);
	
var wordList:Array = new Array();

var textLoader:URLLoader = new URLLoader();
    textLoader.addEventListener(Event.COMPLETE, textLoaded);

var cssLoader:URLLoader = new URLLoader();
var css:StyleSheet = new StyleSheet();


/***************************************
Parse Text + Apply External CSS
***************************************/
function cssLoaded(e:Event):void{
	css.parseCSS(e.target.data);
	tf.styleSheet = css;
	
	for(var i:int = 0; i < wordList.length; i++){
		tf.htmlText += "<h4>" + wordList[i] + "</h4>";
	}
}
function textLoaded(e:Event):void{
	wordList = e.target.data.split("\n");
	cssLoader.load(new URLRequest("http://www.channelone.com/css/flash_block.css"));	
	cssLoader.addEventListener(Event.COMPLETE, cssLoaded);
}

textLoader.load(new URLRequest("http://www.channelone.com/fun/swf_band_name_txt.txt"));

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

ActionScript 3 AS3加载外部XML文件

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

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

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

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

ActionScript 3 AS3从URL加载外部SWF