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 document as an output.
How can I adress the various "cube currency" and "rate" values within as3?
Thanks for your help!
See Question&Answers more detail:
os 与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…