Ver Mensaje Individual
  #4 (permalink)  
Antiguo 09/11/2004, 10:27
Avatar de JavierB
JavierB
Colaborador
 
Fecha de Ingreso: febrero-2002
Ubicación: Madrid
Mensajes: 25.052
Antigüedad: 22 años, 11 meses
Puntos: 772
Hola Pentaflash.

Intentalo con este código:
Código HTML:
<html>
<head>
<script type="text/javascript">
function abrir(e) {
	tecla=(document.all) ? e.keyCode : e.which;
  if(tecla==84 && e.ctrlKey)
  	window.open('c:/del/web/dos.html');
}
</script>
</head>
<body onkeyup="abrir(event)">
</body>
</html> 
Pero ten en cuenta que, por ejemplo en Firefox, Ctrl+T sirve para una función concreta (abrir nueva pestaña) y no se como anular esa función.

Saludos,