Aquí les pongo el codigo...
ASIGNAR PROTOTYPE FUNCTION EN EL PRIMER FRAME
Código:
  
A USAR EN EL MC 
Movieclip.prototype.elasticScale = function(target, accel, convert) {
      xScale = xScale * accel + (target - this._xscale) * convert 
      yScale = yScale * accel + (target - this._yscale) * convert 
      this._xscale += xScale
      this._yscale += yScale
}
Código:
  
La pregunta es, como hago para que se ejecute el elastico sin tener que mover el mouse, mas bien que sea cuando llegue a un frame especifico. 
onClipEvent (enterFrame) {
      if (this.hitTest(_root._xmouse, _root._ymouse, true)) {
            elasticScale(target scale, accel value, convert value)
      } else {
            elasticScale(target scale, accel value, convert value)
      }
}
Gracias, La gerencia...
 
 


