Hi all,
I have this problem which seems so simple but I just can't work out why it's not working. OK, here we go.
I have a movie clip on the main time line of scene 2(main_movie). On the time line of the movie clip (the navigation) is a button. I want to be able to go to scene 3 when you click on this button and it won't. Here is the ActionScript on this button.
// this controls the roll over movie
on (rollOver) {
mc_vision.gotoAndStop("over"
;
}
on (rollOut) {
mc_vision.gotoAndStop("up"
;
}
// end of roll over
// this goes to scene 3 (vision)
on (release) {
_root.gotoAndStop ("vision", 1);
}
Be really cool if someone can show me the error of my ways.
Rod B-)
I have this problem which seems so simple but I just can't work out why it's not working. OK, here we go.
I have a movie clip on the main time line of scene 2(main_movie). On the time line of the movie clip (the navigation) is a button. I want to be able to go to scene 3 when you click on this button and it won't. Here is the ActionScript on this button.
// this controls the roll over movie
on (rollOver) {
mc_vision.gotoAndStop("over"
}
on (rollOut) {
mc_vision.gotoAndStop("up"
}
// end of roll over
// this goes to scene 3 (vision)
on (release) {
_root.gotoAndStop ("vision", 1);
}
Be really cool if someone can show me the error of my ways.
Rod B-)