ActionScript 3 使用换行符解析XML!

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了ActionScript 3 使用换行符解析XML!相关的知识,希望对你有一定的参考价值。

_xmlLoader.addEventListener(Event.COMPLETE, function(e2:Event):void {
		_xmlData = new XML(e2.target.data);
		var titleList:XMLList = _xmlData.Book.title;
		var titleListLength:int = titleList.length();
		_ecoText.text = '';
		for(var i=0 ; i<titleListLength ; i++){
			_ecoText.appendText(titleList[i]+String.fromCharCode(10,13));
			_ecoText.setTextFormat(_ecoFormat); 
		}
		
	});

以上是关于ActionScript 3 使用换行符解析XML!的主要内容,如果未能解决你的问题,请参考以下文章

ActionScript 3 解析XML文件

ActionScript 3 xml解析

ActionScript 3 替换actionscript中的换行符

ActionScript XML解析器

使用 Actionscript 3 连接到数据库 [关闭]

ActionScript 3 AS3:在ActionScript中使用E4X生成动态XML