Using Forex Feed from XML in AS3?
问题 I would like to use this xml file for currency exchange rates in my AS3 flash file: http://www.ecb.europa.eu/stats/eurofxref/eurofxref-daily.xml So far, this is what I have: var myXML:XML; var myLoader:URLLoader = new URLLoader(); myLoader.load(new URLRequest("http://www.ecb.europa.eu/stats/eurofxref/eurofxref-daily.xml")); myLoader.addEventListener(Event.COMPLETE, processXML); function processXML(e:Event):void { myXML = new XML(e.target.data); trace(myXML.*); } With this I get the whole xml