PLEASE HELP Re: on mouse over stop
PLEASE HELP ME ...I made a personal site...but I dont know how to make it stop moving when the mouse pointer points to a certain button....I want it to stop moving when its on mouse over...what's the code to write? please help...to view the site I made...please go to.. www.theparadigm.tk
I just used the code I got from kirupa.com which was
onClipEvent (load)
{
xcenter=724;
speed=1/50;
}
onClipEvent (enterFrame)
{
var distance=_root._xmouse-xcenter;
_x+=(distance*speed);
if (_x > 0) _x=-1448;
if (_x < -1448) _x=0;
}
but it wont stop when my cursor is on a certain button...how should I stop it from moving when my cursor is on a certain button? please help...thanks...
also, I wanted it to move to the left at the same pace as it moves to the right...how should I do that? please help..thanks in advance..