function mover(a, b) { efecto.onEnterFrame = function() { ancho = a; largo = b; punto_x = (720-ancho)/2; punto_y = (500-largo)/2; distancia_ancho = ancho-this._width; distancia_largo = largo-this._height; distancia_x = punto_x-this._x; distancia_y = punto_y-this._y; this._width += distancia_ancho/5; this._height += distancia_largo/5; this._x += distancia_x/5; this._y += distancia_y/5; }; }