ActionScript 3 AS3 XML设置

Posted

tags:

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

var photoXML:XML = new XML();
var xmlLoader:URLLoader = new URLLoader();
xmlLoader.load(new URLRequest('xml/photos.xml'));
xmlLoader.addEventListener(Event.COMPLETE, processXML);


function processXML(e:Event):void
{
	photoXML = new XML(e.target.data);

	trace(photoXML.image)// trace all image nodes
	trace(photoXML.image.@width)// trace attribute of width
}
/*
XML SHOULD LOOK LIKE THIS

<?xml version="1.0" encoding="utf-8"?>
<gallery>
	<image width="500">http://1984interactive.com/photography/misc/IMG_0383.jpg</image>
	<image width="300">http://1984interactive.com/photography/misc/IMG_0383.jpg</image>
	<image width="100">http://1984interactive.com/photography/misc/IMG_0383.jpg</image>
</gallery>
*/

以上是关于ActionScript 3 AS3 XML设置的主要内容,如果未能解决你的问题,请参考以下文章

ActionScript 3 AS3:加载XML

ActionScript 3 As3从XML加载

ActionScript 3 AS3加载外部XML文件

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

[ActionScript 3.0] AS3 对XML的操作,创建删除增加节点方法

ActionScript 3 使用XML创建AS3幻灯片