| View previous topic :: View next topic |
| Author |
Message |
David.P
Joined: 18 Nov 2006 Posts: 160
|
Posted: Sun Jul 06, 2008 10:58 am Post subject: Detect special keys via hex code? |
|
|
Hi Forum,
my keyboard has a number of special keys that can be assigned with standard actions like cut, paste etc.
However I'd like to assign special actions (actually mouse clicks) with these hotkeys via AutoHotkey.
Here's what I get from AutoHotkey "Key History" view when I hit three of these special keys:
| Code: | FF 117 d 1.36 I
FF 117 u 0.19 I
FF 118 d 0.13 O
FF 118 u 0.19 O
FF 10A d 0.11 9
FF 10A u 0.14 9 |
Is there a way that AutoHotkey can detect these keys and assign hotkey actions with them, like e.g.
FF117::RButton ??
Thanks for help,
David.P |
|
| Back to top |
|
 |
n-l-i-d Guest
|
Posted: Sun Jul 06, 2008 7:59 pm Post subject: |
|
|
You can use the Scan Code or the Virtual Key Code, see Special Keys
HTH |
|
| Back to top |
|
 |
David.P
Joined: 18 Nov 2006 Posts: 160
|
Posted: Sun Jul 06, 2008 9:42 pm Post subject: |
|
|
Great, thanks!
Now, it was as easy as:
| Code: | SC117::LButton
SC118::MButton
SC10A::RButton |
Thanks again,
David.P |
|
| Back to top |
|
 |
|