Going to specific frame of external swf
Hello
I've got another little hitch that I've come accross in the project that I'm currently assembling.
From time to time I need to load swf files at specific frames & seem to have hit a brick wall.
The code I'm using is
var loadmod2:Loader;
BackBut.addEventListener(MouseEvent.CLICK, Goneg);
function Goneg(e:MouseEvent):void
{
loadmod2 = new Loader();
loadmod2.load(new URLRequest("mod2.swf"));
addChild(loadmod2);
gotoAndPlay(18);
}
It loads the right swf, but at frame 1, when I want tp load it at frame 18
Trying to search for a solution has just left me even more confused. The solutions put forward seem complex, and I just can't get them to work.
As usual, any help would be greatly appreciated.