Hi,
Ok, here goes for my first post.
New to AS3 (no AS2 experience).
Part of my UNI degree is covering AS3 and I’m having to build a game using Flash.
I have hit a problem trying to load a new SWF after unloading the current one that is auto loaded at runtime using the loader.
I have a button in the 1st SWF that unloads the current one successfully but I’d now also like to get that same button to load up an alternative one.
My host file has the following code:
import flash.display.Loader;
var startGame:Loader = new Loader ();
addChild ( startGame );
startGame.load ( new URLRequest (“interface.swf”));
My loaded SWF (“interface.swf”) has the following code to unload it when required using the button:
function closeInterface(e:MouseEvent):void {
MovieClip(parent.parent.parent).startGame.unloadAndStop();
}
can someone kindly point me towards how to load up the next SWF at the same time please…
hope I’ve explained that ok
thanks in advance