Because we set a stop at both the beginning and end of the movie clips timeline, well need to tell Flash that when the mouse moves over the movie clip, it needs to jump past frame 1 (where the stop is) and move on to frame 2 to play freely until the end, where the stop will catch it and hold it. When the mouse moves away from the movie clip, it needs to rewind back to the beginning (making the menu vanish) and stop.
For this well use the on function (on (rollOver) and on (rollOut)) and the goto function (gotoAndPlay, gotoandStop):
on (rollOver) {
this.gotoAndPlay (2) ;
}
on (rollOut) {
this.gotoAndStop (1) ;
}
Remember, this. reminds Flash to apply these functions to the selected Movie Clip.


