Ver Mensaje Individual
  #2 (permalink)  
Antiguo 20/12/2007, 08:08
darkxer0x
 
Fecha de Ingreso: junio-2006
Mensajes: 270
Antigüedad: 17 años, 9 meses
Puntos: 0
Re: Action scrips para desaparecer algo

A ver: merciMC._visible = false NO
Código:
merciMC._alpha = 0;
on(press){
onenterFrame = function()  {
if (merciMC._alpha <= 90)  {
merciMC._alpha += 7;
} else {
merciMC._alpha = 99;
}
}
}