Ver Mensaje Individual
  #2 (permalink)  
Antiguo 18/06/2004, 02:26
Avatar de miguelP
miguelP
 
Fecha de Ingreso: diciembre-2001
Ubicación: Valencia
Mensajes: 285
Antigüedad: 22 años, 4 meses
Puntos: 0
hola maroa. Prueba a hacer lo siguiente:
En el clip (que tendrá como nombre de instancia "graphic1") le pones algo como
Código:
onClipEvent (load) {
	this._alpha = 0;
}
onClipEvent (enterFrame) {
	if (_root.reotomo == 1) {
		this._alpha = this._alpha+1;
	}
	if (_root.reotomo == 0) {
		this._alpha = 0;
	}
}
y en el botón le pones algo como

Código:
on (rollOver) {
	_root.reotomo = 1;
}
on (rollOut) {
	_root.reotomo = 0;
}
Utilizamos la variable "reotomo". Para hacerlo con "graphic1","graphic2","graphic3"... utiliza más variables.

Pruebalo a ver si te funciona. Si no me cuentas.
Ciao.