cliffdangler
01-24-2002, 08:39 AM
If I have 2 scenes and I want to get to scene 2 from scene 1, then the following works:
on (release) {
gotoAndStop ("Scene 2", 1);
}
This works fine because the button sits in the ROOT of scene 1.
The problem is that my button that has the above action is not in the ROOT of scene 1. It is in a movie clip which is in another movie clip (2 levels down).
How do I get the actions to work on my button? I have even tried:
on (release) {
_root.gotoAndStop ("Scene 2", 1);
}
I am so frustrated. Either I'm really stupid or my button HAS TO sit on the root of scene 1 in order to execute the action. I really hope it is the former.
Please help. Thank you.
on (release) {
gotoAndStop ("Scene 2", 1);
}
This works fine because the button sits in the ROOT of scene 1.
The problem is that my button that has the above action is not in the ROOT of scene 1. It is in a movie clip which is in another movie clip (2 levels down).
How do I get the actions to work on my button? I have even tried:
on (release) {
_root.gotoAndStop ("Scene 2", 1);
}
I am so frustrated. Either I'm really stupid or my button HAS TO sit on the root of scene 1 in order to execute the action. I really hope it is the former.
Please help. Thank you.