Hello,
I’m building a website that loads multiple swfs within one main swf. I would also like some swfs to unload when i click on the button situated on it.
could someone please help me on this.
Currently I’m only able to load one swf with this code, can I somehow load more that just one swf by default? you can see the code below:
var swf:MovieClip; var loader:Loader = new Loader();
var defaultSWF:URLRequest = new URLRequest("swf/gallery.swf"); loader.load(defaultSWF); addChild(loader);