Using On key for undefined keys: Difference between revisions
From DataFlex Wiki
Jump to navigationJump to search
Hellboy1975 (talk | contribs) New page: '''On_Key''' is a command used in Dataflex for trapping the action of keystrokes. All alphanumeric characters on the keyboard have actions define for them, but some keys such as /!@#$...e... |
Hellboy1975 (talk | contribs) No edit summary |
||
Line 9: | Line 9: | ||
Define_Symbol Key_FwdSlash for |VI$802F | Define_Symbol Key_FwdSlash for |VI$802F | ||
On_Key Key_FwdSlash Send DoSomething | On_Key Key_FwdSlash Send DoSomething | ||
[[Category: How To]] |
Revision as of 22:44, 25 November 2007
On_Key is a command used in Dataflex for trapping the action of keystrokes. All alphanumeric characters on the keyboard have actions define for them, but some keys such as /!@#$...etc do not.
You can define these special characters yourself. Generally this is done by working out the Hex value of the keystroke, and then defining the key with a Define_Symbol command.
Examples
Capturing the "/" symbol:
Define_Symbol Key_FwdSlash for |VI$802F On_Key Key_FwdSlash Send DoSomething