16/07/2007, 09:42
|
| | Fecha de Ingreso: julio-2007
Mensajes: 9
Antigüedad: 17 años, 4 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);
} |