Quote:
Originally Posted by Fubar2Niner
My guess is this is the correct route, but I have no idea about key codes etc. If anyone could help an old lag, I'd be most grateful 
|
Just look here:
http://www.cambiaresearch.com/articl...odes-key-codes
You need to change these decimal values to hex.
So, to assign the shift-h key, you need to write:
Code:
Key0=0x48,s,"Shift+H"
Because:
the 'H' key is 72 dec = 48 hex
's' - action with the 'shift' key ('c' for the 'control' key).
Good luck.