Movie clip start and stop on mouse over

Hello,

I’m attempting to create a movie clip animation that plays a loop when you mouseover and when you mouse out off of the movie clip i want the loop to stop at that current frame and stay there until the next mouse over event which would then start playing the movieclip at “last” frame prior to the mouseout.

Any ideas?

Thanks

Place this on your movie clip:[AS]on (rollOver) {
this.play();
}
on (rollOut) {
this.stop();
}[/AS]