Need urget help

hi everybody

i have made an _x motion animation with this script. this works fine. but now the thing is, i have made a buttoon when i’ll rollover on that button this scroller animation should stop.

can anybody tell me wat script should i rite.


this.onEnterFrame = function (){
	if (this.images.contents._x >-1200){
		this.images.contents._x += -3;
	}else {
		this.images.contents._x +=1200;
	}
}

:cross-eye