Umm…lets see…
_root.emptycontainer.loadMovie(_root.currSubMovie+".swf");
}
got this code in last frame of externally loaded swf. I am using the tut from kirupa.com about the transitions of ext loaded swfs.
I have a MAIN movie with a nice menu. When i press a button in that menu, it attaches a movie (not external) and brings up the sub menu. In that sub Menu, i have bunch of buttons which load external swfs in an emptycontainer(on _root. timeline) movie clip. Now as you see above, there is this code on the last frame of externally loaded swf (when the outro transition is over).
Now here is the problem, when i press a button on the MAIN MENU, i need the swf to do the OUTRO transition and Do not load any other movies…So, i made a condition on the last frame of ext. loaded swf…
if (_root.currMovie == "submenu_mc") {
_root.emptycontainer.loadMovie(_root.currSubMovie+".swf");
}
// this code is on the last frame of the externally loaded swf.
But not working … i want the condition _root.currMovie == “submenu_mc” to work…but its not working … got any ideas? :puzzle: