Ver Mensaje Individual
  #4 (permalink)  
Antiguo 04/03/2008, 13:49
Avatar de Panino5001
Panino5001
Me alejo de Omelas
 
Fecha de Ingreso: mayo-2004
Ubicación: -34.637167,-58.462984
Mensajes: 5.148
Antigüedad: 20 años, 6 meses
Puntos: 834
Re: Disparar un evento asignado con Event.observe

Bueno, la solución para eso creo que tu librería ya te la aporta: registra en un vector todas las funciones y todos los eventos que las disparan seguramente, de manera que tendrás que recorrer ese vector, determinar cuál es la función que te interesa y luego llamarla de esta manera (call) o con apply:
Código PHP:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<
html xmlns="http://www.w3.org/1999/xhtml">
<
head>
<
meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
<
title>test</title>
<
script>
function 
addEvent(objevTypefnuseCapture){
 
 if (
obj.addEventListener){
    
obj.addEventListener(evTypefnuseCapture);
    
  } else if (
obj.attachEvent){
    
obj.attachEvent("on"+evTypefn);
   
  } else {
   
obj['on'+evType]=fn;
  }
}
function 
decirHola(){
alert('hola!');
}
function 
simular(obj){
decirHola.call(obj)
}
window.onload=function(){
    
addEvent(document.getElementById('pp'), 'click'decirHolafalse);
    
simular(document.getElementById('pp'));
}
</script>
</head>

<body>
<div id="pp">click</div>
</body>
</html>