Please help! I have a movie and in that movie external movieclips are loaded into a container movieclip (i.e. kirupa tutorial) The buttons actionscript looks like this:
on (release) {
if (_root.currMovie == undefined) {
_root.currMovie = “about”;
container.loadMovie(“about.swf”);
} else if (_root.currMovie != “about”) {
if (container._currentframe>=container.midframe) {
_root.currMovie = “about”;
container.play();
}
}
}
Within that external movieclip, another external movie clip is loaded into a container movieclip. Get me so far? So I mean the movies are loading into one another. I just need to know how to change the _root part of the script to make the second moviclip work!! see below:
movie/
container movieclip(button loads external movieclip here)/
External movieclip/
external container movieclip(button loads another external movieclip here)