If I have a command that fires on Windows + Shift + Right, the problem is that when I release the keys the start menu pops up. You can see it even with this script which should do nothing. Is there a way to stop that from happening.
#+Right::Return
If I have a command that fires on Windows + Shift + Right, the problem is that when I release the keys the start menu pops up. You can see it even with this script which should do nothing. Is there a way to stop that from happening.
#+Right::Return
The start menu gets triggered on the release of the Win key. Though your test script works on my end (AHK_L v1.1.23.01) you can try adding this:
#+Right Up::return ; Do nothing on key release
Try this and see if it works:
#+Right::
KeyWait, LWin
; some stuff
Return
This work in my case.
#H:: ;do something
#+H Up:: return
#RButton:: ;do something
#LButton Up:: Send {VKFF}
Just return
or send another key to prevent it.