我有一个xml文件(用URLLoader加载),如下所示:
<?xml version="1.0" encoding="UTF-8"?>
<root>
<localizations>
<words>
<Brand us="Brand Here"></Brand>
</words>
</localizations>
<world squareunits="100"></world>
</root>
加载后,使用E4X或纯AS3访问 world.squareunits 的最快捷方式是什么?
答案 0 :(得分:4)
var xml : XML = new XML( yourStringHere );
trace( xml.world.@squareunits );