Just:
on(rollOver) {
yourrotatingmc.stop();
}
on(rollOut) {
yourrotatingmc.play();
}
Change yourrotatingmc to the rotating mc where you have the rotation-tween!
oih! Didn’t notice you use tellTarget!
well If the rotating movieclip is on the main timeline then use
_root.rotatingmc
if it is inside a movieclip with an instance name “mymovie” then it would be
_root.mymovie.rotatingmc
etc… That way it’s easier!
Like this:
_root.mymovie.rotatingmc.play();
easier than to use tellTarget!