Ver Mensaje Individual
  #2 (permalink)  
Antiguo 21/07/2006, 11:24
Avatar de Bandit
Bandit
Moderador
 
Fecha de Ingreso: julio-2003
Ubicación: Lima - Perú
Mensajes: 16.726
Antigüedad: 20 años, 10 meses
Puntos: 406
Hola NikelOut:
AL MC colócale como nombre de instancia: mc y éste código en el frame:
MovieClip.prototype.desvanece = function() {
var incremento = 100;
this.onEnterFrame = function() {
if (incremento>0) {
this._alpha = incremento;
incremento--;
} else {
delete this.onEnterFrame;
}
};
};
//
mc.desvanece();

Espero haberte sido de ayuda.
__________________
Bandit.
Si no sabes estudia y si sabes enseña.
http://www.banditwebdesign.com/