So I've been fiddling around a lot and finally stumbled on how to clone shift+ letters for wow (below)
Code:
WinGet, wowid, list, World of Warcraft
+Q::
ControlSend,, {Shift down}{Q down}{Q up}{Shift up}, ahk_id %wowid1%
ControlSend,, {Shift down}{Q down}{Q up}{Shift up}, ahk_id %wowid2%
Return
However it seems to not be working with numbers, I think its because it thinks im pressing the shift character for the key (1 would be !, 2 would be @, 3 would be # etc...) so heres what I came up with, its an improvement because now my main window is working correctly but my offwindow is still trying to cast just the number as if the shift is not held down
Code:
WinGet, wowid, list, World of Warcraft
+2::
ControlSend,, {Shift down}{@ down}{@ up}{Shift up}, ahk_id %wowid1%
ControlSend,, {Shift down}{@ down}{@ up}{Shift up}, ahk_id %wowid2%
Return
WinGet, wowid, list, World of Warcraft
+3::
ControlSend,, {Shift down}{# down}{# up}{Shift up}, ahk_id %wowid1%
ControlSend,, {Shift down}{# down}{# up}{Shift up}, ahk_id %wowid2%
Return
WinGet, wowid, list, World of Warcraft
+4::
ControlSend,, {Shift down}{$ down}{$ up}{Shift up}, ahk_id %wowid1%
ControlSend,, {Shift down}{$ down}{$ up}{Shift up}, ahk_id %wowid2%
Return
Connect With Us