Ver Mensaje Individual
  #8 (permalink)  
Antiguo 16/07/2007, 10:32
osiris
 
Fecha de Ingreso: marzo-2003
Ubicación: Catalunya
Mensajes: 265
Antigüedad: 21 años, 1 mes
Puntos: 2
Re: boton para mc con fadeout. ayuda!!

Hola:

prueba este código a ver si te va bien. A mi me ha funcionado.

on (release) {
contenedor.onEnterFrame = function () {
this._alpha +=(0-this._alpha)/5;
if (this._alpha<=0) {
this._alpha = 0;
delete this.onEnterFrame;
gotoAndPlay(100);
}
}
}

Saludos