I would have thought that the following shoiuld trace my xml document to the output window - but it does not it just traces “xml loaded” why???
[AS]var getClassification:XML = new XML();
getClassification.ignoreWhite = true;
getClassification.onLoad = function(success){
trace(getClassification);
trace(“xml loaded”);
}
getClassification.load(“classifications.xml”);[/AS]