Loading a Flipping Book swf into a parent swf file
Hello everyone, I hope I can find the answer to my problem here...
I'm trying to load a flipping book swf file inside my flash website and I'm using this code:
var myLoader:Loader = new Loader();
addChild(myLoader);
var url:URLRequest = new URLRequest("catalogue.swf");
myLoader.load(url);
the swf file containing the book loads abut the pages that are linked to an XML file won't. I'm using AS 3 and I have found some answers but they are all in AS 2. Does anyone know how I can make this work? How do I call that XML file?
Thanks!!
