hey everybody! I recently started looking into octopus but came to the
conclusion that my issues would be resolved if I could simply broadcast
the Shift+1, 2, etc combinations to my other windows with AHK. I'm
using a prewritten script that, for example, uses:



~1::

KeyWait 1, D

WinGet, Active_Window, ID, A

IfWinActive, World of Warcraft

{

If(%killbroadcast% = 0)

{

Loop, %wowid%

{

target_window := wowid%A_index%

If (Active_Window <> target_window)

{

ControlSend,, 1, ahk_id %target_window%

}

}

}

}

Return



...To broadcast the number 1. Could anybody please develop a script
that would broadcast the Shift+1 combo so that I can also alter it for
the other combinations? Thanks again.