I have a mc that I am moving along the x axis dynamically. When it reaches a certain point it resets to 0 x.
I would like to stop the movement of the mc (on it's current x position) on mouse over and restart on mouse out.

Thanks in advance for your help.

Here is my code so far:

addEventListener(Event.ENTER_FRAME, fl_EnterFrameHandler_5);

function fl_EnterFrameHandler_5(event:Event):void
{

this.myObject.x += -1;
if (this.myObject.x == -1)
{
this.myObject.x = 110;
}

}