0

我正在尝试编写一个将Ctrl+something 发送到多个窗口的脚本。我写了这个:

; it's Eve Online - the window title is like this: "EVE - Character Name"
SetTitleMatchMode, 1
WinGet, eveid, list, EVE 
; I want to send Ctrl+Q to 2 windowed clients at once
^q::
KeyWait, {Ctrl}q, D
    ControlSend,, {Control down}q{Control up}, ahk_id %eveid1%
    ControlSend,, {Control down}q{Control up}, ahk_id %eveid2%
Return

但它不起作用!

任何建议我都会非常感激!

4

0 回答 0