Ver Mensaje Individual
  #2 (permalink)  
Antiguo 09/12/2004, 13:45
Avatar de jahepi
jahepi
Colaborador
 
Fecha de Ingreso: diciembre-2004
Ubicación: Querétaro
Mensajes: 1.124
Antigüedad: 19 años, 4 meses
Puntos: 43
Hola!, no estoy muy seguro de lo que quieres, pero podrias intentar algo como esto:

Código PHP:
instancia.onRollOver = function() {
    
this.estado true;
};
instancia.onRollOut = function() {
    
this.estado false;
};
instancia.onEnterFrame = function() {
    if (
this.estado) {
        
this.nextFrame();
    } else {
        
this.prevFrame();
    }
}; 
Suerte!