I’ve been using this tutorial, and I get stuck when my buttons are not on my main timeline.
“If your buttons are not located on the main timeline, you will have to change the path to the container movieclip. In this example the buttons are located on the main timeline, therefore ‘container’ targets the container movieclip correctly. Though, if they are not on the main timeline, you must change container to the appropriate path.”
I’m having trouble changing the container to the appropriate path.
Here’s the code from the tutorial:
on (release) {
if (_root.currMovie == undefined) {
_root.currMovie = “work”;
container.loadMovie(“work.swf”);
} else if (_root.currMovie != “work”) {
if (container._currentframe >= container.midframe) {
_root.currMovie = “work”;
container.play();
}
}
}
How would I change the path?
Thanks in advance to anyone who can help me.