PDA

View Full Version : linking scenes from a movie clip


dratl
12-09-2002, 01:58 PM
hi guys, a really newbie question, I have have this movie clip wich is inside scene two, the movie clip have some buttons and those buttons are linking to another scene, but somehow it's not working, it keeps sending me to the same scene (scene two) instead of the scene three, i already tried "_parent._parent.scene3" & "../scene3" & "_root.scene3" and "_parent.scene3"

can somebody tell me what am I doing wrong?

Thanks a lot!

DrAtl "The newbie guy"

binkyboo
12-09-2002, 02:19 PM
This script would go on the button which is embedded in your movieclip.


on (release) {
with (_root) {
gotoAndPlay("Scene3", 1);
}
}


Hope this helps!

dratl
12-09-2002, 02:37 PM
yeah it really did, it also worked putting a frame label on frame one named "scene3"

on (release) {
_root.gotoAndPlay ("scene3");
}