From: Brehm, R. P <rob...@of...> - 2004-12-06 20:53:37
|
All, I am implementing function key support as follows: <body ... onKeyDown="HandleFnKeys()" ... > and the javascript is as follows: function HandleFnKeys() { var evt=window.event.keyCode; switch (evt) { case 112: //F1 HandleSubmit(); break; case 113: //F2 OpenExistingPO(); break; case 121: //F10 HandleChoose(); break; }//switch }//function I notice that the onKeyDown event by the documentation is not implemented. Is there any way around this to perform the function key support? Best Regards, Bob Brehm Software Engineer Xerox Corp. |