He creado esta funcion
Código PHP:
function easing(final_x,final_y){
this.onEnterFrame = function(){
this.distancia_x = Math.round((Number(final_x)-Number(this._x))/2);
this.distancia_y = Math.round((Number(final_y)-Number(this._y))/2);
this._x = this._x+distancia_x;
this._y = this._y+distancia_y;
}
}
cambios_btn.onRelease = function(){
easing(300,0);
}
Código PHP:
cambios_btn.onRelease = function(){
this.cuadro.easing(300,0);
}
Código PHP:
cambios_btn.onRelease = function(){
this.cuadro= function (){
easing(300,0);
}
}