xml=new XML();
xml.load("test.xml")
xml.onLoad=function(loaded){
if(loaded){
trace(xml.firstChild.firstChild);
}
}
This looks good, right?
now this is what's in the xml document.
hi
hello
hiya
nothing compicated. To me, this looks like the trace should return
edit: oh, and the actual xml is loading nicely. if i put trace(xml) the entire xml doc will show up.