Hi!
I have an application with three frames. I want to assign custom functions
to different combinations of keystrokes. For instance I want to display a
popup window if the user presses F1 (keycode 112).
I have placed this proc in "leftFrame - Nav.htm" and it only works for
"Nav.htm":
Sub KeyFunctions()
Select Case window.event.keyCode
Case 112
...
End Select
End Sub
<body onkeydown="KeyFunctions()">
I have two questions:
1. Where do I put the procedure so that it works across all frames
regardless which frame has focus?
2. How can I override the default behavior of IE showing the Help wizard
when pressing F1 or prevent IE from doing other things when pressing an
already built in key combination?
Regards
PO