im using autohotkey and have a question. i use the standard layout with q-r;a-f;y-v. i rebind wasd for moving my camera. instead of wasd im using shift+wasd for the original commands. i can choose a building and produce units with using the shift+w command, also i can use special units commands like 'hold fire'. but when i will stop my unit with shift+w the unit said that they will stop, but nothing happens. the game use shift to queue moving commands, so i believe the game also queue my stop command. have someone a idea how i can solve this problem in my autohotkey script? i also tried capslock instead of shift, but shift is a lot more comfy.
sorry for my horrible english
greetings

a part from my ahk:
...
; arrow keys
w::Up
s:

a::Left
d::Right
; normal hotkeys
+w::w
+s:

+a::a
+d::d
...