Hi guys,
I would like to move the define functionality from its default spot of (shift + xtθn) to another key. How would I go about creating a user key for this?
Righteo, so I found that if you return the key id number, you can get the "original key".
For example,
Code:
KEY K_PAREN()
BEGIN
RETURN 17;
END;
converts the () key into the xtθn key.
However, I still don't know how to access the shift or alpha versions of those keys. Is there a way to modify the key ID to do so? Like K_SHIFT(17) or something?
(10-29-2016 10:23 PM)CH3791 Wrote: [ -> ]However, I still don't know how to access the shift or alpha versions of those keys. Is there a way to modify the key ID to do so? Like K_SHIFT(17) or something?
Add 51 to the key id to access the shifted function and 102 for the alpha character.
(10-29-2016 10:40 PM)Didier Lachieze Wrote: [ -> ]Add 51 to the key id to access the shifted function and 102 for the alpha character.
That's. Awesome. Thanks very much!
Thanks Moonbeam for replying, but what you've presented is the list of key names, and not how to access it. If that makes sense?