ActionScript 3.0 Mouse Over and Mouse Out scripting error
Trying to figure out a way to reverse a movie clip when I Mouse out.
here's my code right now:
Image_zoom.stop();
Image_zoom.addEventListener(MouseEvent.MOUSE_OVER, fl_MouseOverHandler_3);
function fl_MouseOverHandler_3(event:MouseEvent):void
{
Image_zoom.play();
}
It plays the video when I hover over with my mouse but when I move my cursor off it pauses the movie clip. Can it reverse on a mouse out regardless of play point.
Anything will help!
Thanks!
