Easy XML Loading util


/ Published in: ActionScript 3
Save to your folder(s)

Simple usage:

var xmlLoader:LoadXMLUtil = new LoadXMLUtil("path_to_xml.xml");
xmlLoader.addEventListener(Event.COMPLETE, onLoaderComplete);

private function onLoaderComplete(event:Event):void{
trace("Loaded XML: ");
trace(xmlLoader.xml);
}

Report this snippet


Comments

RSS Icon Subscribe to comments

You need to login to post a comment.