Ver Mensaje Individual
  #1 (permalink)  
Antiguo 26/04/2009, 04:30
seresac
 
Fecha de Ingreso: agosto-2006
Mensajes: 81
Antigüedad: 17 años, 10 meses
Puntos: 0
Tooltip con efecto easing

Hola estoy haciendo un tooltip con efecto easing, pero de momento lo que me falla es curiosamente el efecto easing.

No se como realizar para que el tooltip aparezca de forma suave. El codigo que uso, es el siguiente

_root.tooltip._visible = false;
this.onRollOver = function() {
_root.tooltip._visible = true;
};
this.onRollOut = function() {
_root.tooltip._visible = false;
};


Alguien me puede ayudar?