| View previous topic :: View next topic |
| Author |
Message |
kobyashi
Joined: 09 May 2005 Posts: 7
|
Posted: Sat May 28, 2005 9:05 am Post subject: Disabling of hotkey chord key |
|
|
In particular, if you have a
| Code: | LWin::
return ; disabled
#a::MsgBox ; won't run |
Because the windows prefix key was disabled, somehow the #a chord was also disabled.
I've tested the case with keyboard hook running. |
|
| Back to top |
|
 |
Chris Site Admin
Joined: 02 Mar 2004 Posts: 10480
|
Posted: Sat May 28, 2005 5:38 pm Post subject: |
|
|
This behavior is by design, mostly due to limitations with the way hotkeys are handled by the OS. However, you can explicitly override this behavior with:
LWin & a::
RWin & a::
MsgBox Forced to run.
return |
|
| Back to top |
|
 |
|