Lexikos
Joined: 17 Oct 2006 Posts: 7295 Location: Australia
|
Posted: Thu Feb 18, 2010 9:32 pm Post subject: |
|
|
It's not a bug. #If, #IfWinActive, #IfWinExist, etc. hotkeys are typically implementing using the keyboard hook unless a global variant is defined and all defined variants are enabled. Hook hotkeys are not triggered by Send. For instance, LButton will not trigger the MsgBox:
| Code: | GroupAdd, Everything
#IfWinActive ahk_group Everything
~LButton::Send {Backspace}
Backspace::msgbox blah | If you add this, it will:
| Code: | #IfWinActive
~LButton::return
Backspace::return |
|
|