#w::
while(getkeystate("lwin", "P") && getkeystate("w", "P")){
WinGetPos,,,,Height, A
WinMove,A,,,,,% Height-(A_ScreenHeight/20)
}
Return
#s::
while(getkeystate("lwin", "P") && getkeystate("s", "P")){
WinGetPos,,,,Height, A
WinMove,A,,,,,% Height+(A_ScreenHeight/20)
}
Return
#a::
while(getkeystate("lwin", "P") && getkeystate("a", "P")){
WinGetPos,,,Width,, A
WinMove,A,,,,% Width-(A_ScreenWidth/20),
}
Return
#d::
while(getkeystate("lwin", "P") && getkeystate("d", "P")){
WinGetPos,,,Width,, A
WinMove,A,,,,% Width+(A_ScreenWidth/20),
}
ReturnTry to hit Win+D+A and only the script that has hotkey Win+A will work out.
How in that case to make hotkeys Win+D and Win+A work together (simultaneously)?




