I have a .ahk
script file with 3 hotkeys.
Each hotkey takes a few seconds to complete.
What happens when I run hotkey a
and then hotkey b
before a
is finished is that a
is interrupted and the script continues with b
.
Basically I want a
and b
to run concurrently.
Can I achieve this ?