| Will Smythe 2005-06-05, 5:45 pm |
| Saulius Kupstaitis wrote:
> Hello !!!
>
> Can someone help we find a way for sending a scroll Lock send key
>
> I'm working on a mainframe and we use the scroll lock to change the cursor
> position from left to right position
>
> Tanks in advanced
>
> Dudi Saidon
>
>
>
>
>
>
>
>
Which aid key are you trying to send to the host system? When you say
"change the cursor position from left to right" are you referring to
moving the cursor to the end of an input field (maybe the EOF aid key)?
The ASCII code for the scroll lock key is "145" (on an EN US keyboard).
If you determine which command to send to the host, you can update
KBS.js (the Javascript file responsible for keyboard remapping) and add
a new mapping for the scroll lock key. For example, something like the
following:
[145, 0, 0, 0, '[eof]' ],
See chapter 13 in the HATS v6 User's and Administrator's guide for more
information on remapping the keyboard.
Hope this helps.
Will
|