Ehh ..Ehh

codice:
InitX=palla._x
InitY=palla._y

DestX=500
DestY=200

function Sposta(){
	palla.onEnterFrame=function(){
		X=_level0.DestX-this._x
		Y=_level0.DestY-this._y
		this._x+=X/X 	
          	this._y+=Y/X 		
                trace(this._x + "/" + this._y)
		
	}
}

Sposta()