jonny
Joined: 13 Nov 2004 Posts: 3004 Location: Minnesota
|
Posted: Sat Feb 26, 2005 2:24 am Post subject: "Up" hotkeys unreliable? |
|
|
This works perfectly, showing two msgbox's in quick succession:
| Code: | lwin::msgbox,%a_thishotkey% was depressed.
lwin up::msgbox,%a_thishotkey% was released. |
However, this does not work. It only shows the latter msgbox:
| Code: | control::msgbox,%a_thishotkey% was depressed.
control up::msgbox,%a_thishotkey% was released. |
When changed to this, though, it too works flawlessly:
| Code: | lcontrol::msgbox,%a_thishotkey% was depressed.
lcontrol up::msgbox,%a_thishotkey% was released. |
Is this intentional? The same thing occurred with shift and alt. I'm guessing it has something to do with the nature of them covering more than one key at once. |
|