codice:
onClipEvent(load){
		posx = _x;
		posy = _y;
}
onClipEvent(mouseDown){
	if(!hitTest(_root._xmouse,_root._ymouse,false)){
		posx = _root._xmouse;
		posy = _root._ymouse;
	}
}
onClipEvent(enterFrame){
		_x = _x+(posx-this._x)/7;
		_y = _y+(posy-this._y)/7;
}
associa questo al movieClip che deve seguire il mouse