as3 xml文件解析
<?xml version="1.0" encoding="utf-8" ?><config> <mod_tt> <tt1>公司简介</tt1> <tt2>关于我们</tt2> <tt3>摄影</tt3> </mod_tt> <mod_url> <tt1>http://www.baidu.com/</tt1> <tt2>http://www.google.com/</tt2> <tt3>http://www.sohu.com/</tt3> </mod_url></config>?
?
var xml_path:String = "xml/menu.xml";var oXML:XML;var menuData:Array;function init(){menuData = new Array();// 加载xml文件==================================var xmlLoader = new URLLoader(new URLRequest(xml_path));// 添加侦听器xmlLoader.addEventListener(Event.COMPLETE,xmlLoaded);}init();function xmlLoaded(e:Event){oXML = new XML(e.target.data);// 组装数据for(var i=0,iLen=oXML.mod_tt.child('tt').length();i<iLen;i++){menuData.push(new Array(oXML.mod_tt.child('tt')[i],oXML.mod_url.child('tt')[i]));}}