Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

Every Destination Screen has a button script which indicates how the function keys the user presses or the buttons the user clicks should be handled:


 
When you generate a button script from tracking information, every key present on the screen is handled in a series of SENDKEY functions in the script.

     ... 
case KeyEnter:
SENDKEY(KeyEnter);
...

If you disable a key in the Destination Screen Details the script for it does not get executed.

...

You can also add buttons or function keys which are entirely processed on the client system and never sent back to the server. To do this you enable them in the Destination Screen Details and then add handling for them in the button script.


See Also

SENDKEY Function