fai una sola funzione che esegue movimento e rotazione
esempio:
codice:function moverotaz(finex,finey,r){ clip.onEnterFrame=function(){ Y=finey - this._y this._y=this._y+Y/5 X=finex - this._X this._x=this._x+Y/5 this._rotation+=r } } moverotaz(500,350,10)