Hi,
Is it possible to use HTML or CSS tags in XML text content?
here's my loader:
private function loadMp3 ():void {
LoaderMax.activate([MP3Loader, CSSLoader]);
queue1 = new LoaderMax({name:"mainQueue", onProgress:progressHandler, onComplete:completeHandler});
queue1.append( new CSSLoader("./css/flashSiteStyles.css", {name:"flashStyleSheet"}) );
queue1.append( new XMLLoader("./xml/mp3List.xml", {}));
queue1.load();
}
Here's my XML:
When my load gets to the mp3Title attribute the load silently fails. If I remove the tags it loads fine. I've tried escaping the tags with CDATA but there doesn't seem to be a way to wrap the content since it's in an attribute.