I’ve been reading different posts for about an hour now, but I can’t get a button within a external swf which is inside another external swf to work. It just loads the 1st external swf all over again. None of the things I’ve read have worked for flash mx. I’m using the transistions between external swf’s tutorial here on kirupa, but I’m still having some trouble. Also I’m using different instance names for each empty movie clip.
Here’s basically what it looks like:
Main Movie
1st swf <---- Button on this swf won’t load…
2nd swf <------…this swf.
Code for second button:
on (release) {
if (_root.currMovie == undefined) {
_root.currMovie = "bright";
_root.baby.loadMovie("bright.swf");
} else if (_root.currMovie != "bright") {
if (baby._currentframe>=baby.midframe) {
_root.currMovie = "bright";
_root.baby.play();
}
}
}
Any help at all will be appreciated.