Hola jose1225:
Aquí un ejemplo:
Ponle como nombre de instancia al MC
clip.
En la capa acciones escribe éste código:
Código actionscript:
Ver originalclip.onRelease = function()
{
clip.onEnterFrame = function()
{
if (this._xscale < 1000)
{
this._xscale = this._yscale = this._xscale + 10;
}
if (this._alpha <= 100)
{
this._alpha = this._alpha - 5;
}
else
{
delete this.onEnterFrame;
}
};
};
Espero haberte sido de ayuda.