Ver Mensaje Individual
  #4 (permalink)  
Antiguo 16/07/2007, 09:42
titobono
 
Fecha de Ingreso: julio-2007
Mensajes: 9
Antigüedad: 16 años, 9 meses
Puntos: 0
Re: boton para mc con fadeout. ayuda!!

le he puesto este codigo y me pasa de golpe al fotograma 100. que es lo que no estoy haciendo bien?

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