Tema: Alpha+AS
Ver Mensaje Individual
  #4 (permalink)  
Antiguo 23/06/2003, 12:29
Avatar de juwe
juwe
 
Fecha de Ingreso: abril-2001
Ubicación: Guadalupe Inn
Mensajes: 622
Antigüedad: 23 años
Puntos: 0
Hola, prueba este código.
Código:
mi_mc.onRollOver = function() {
	this.onEnterFrame = function() {
		this._alpha -= 10;
		if (this._alpha <= 0) {
			delete (this.onEnterFrame);
			}
		}
}

mi_mc.onRollOut = function() {
	this.onEnterFrame = function() {
		this._alpha += 10;
		if (this._alpha>=100) {
			delete (this.onEnterFrame);
			}
		}
	}
Espero te sirva.
Saludos desde México.
__________________
blog.juwestudio