如何使用 AS3 加载带有 URLVariables 的 .xml 文件
示例:文件
example.xml?varsHere
var loa:URLLoader = new URLLoader();
loa.addEventListener(Event.COMPLETE, gocom);
loa.addEventListener(IOErrorEvent.IO_ERROR, gotError);
loa.load(new URLRequest("example.xml"));
function gotError(event:IOErrorEvent):void{
trace("INVALID");
}// function gotError
function gocom(event:Event){
var userxml:XML = new XML(loa.data);
XML.ignoreProcessingInstructions = false;
userxml = new XML(loa.data);
}
// INVALID