Я правильно вас понял, вам необходимо остановить анимацию клипа, если курсор находится над ним ?

Код AS1/AS2:
//бабочка
clip_mc.onEnterFrame = function() {
this._x -= (clip_mc._x-_xmouse)/80;
this._y -= (clip_mc._y-_ymouse)/80;
if(this.hitTest(_xmouse, _ymouse)) this.stop();
this._rotation=Math.atan2((this._y-this._parent._ymouse),(this._x-this._parent._xmouse))*180/Math.PI;
};