I‘m making an autohotkey script.
What the problem is that the ELSE commands are sometimes not working.
How to fix this problem?
>Solution :
use IF commands instead.
For example:
<^<!-::
If GetKeyState ("u", "p")
MsgBox hey!
If not GetKeyState ("u", "p")
MsgBox bye!
hope that helped.