picture this:
on the root:
1 SWF loaded, 1 MC called CONTENT
the SWF contains 3 buttons, on Release it loads another SWF into that content MC.
it also sets a VAR called thumbkids and it’s set to 1 or 2 or 3 (depending on which button you press)
on (release) {
_root.nextMovie = “externalswf.swf”;
_root.cover.gotoAndPlay(“close”);
_root.thumbkids = “1”;
}
inside the to be loaded ‘externalswf.swf’ there is the following action:
if (_root.thumbkids = “1”) {
_root.content.gotoAndStop(“4”);
}
if (_root.thumbkids =“2”) {
_root.content.gotoAndStop(“5”);
}
if (_root.thumbkids = “3”) {
_root.content.gotoAndStop(“6”);
}
else {
_root.content.gotoAndStop(3);
}
so after loading the swf goes automatically to that frame and the var should make sure that it goes to the correct frame…
but as you guessed already, it doesn’t work
i am fairly weary, so I am surely missing an easy solution, so your help is much appreciated