0

我在 Autohotkey 中有这个简单的脚本:

:*:teams::
(
milan
juventus
inter
roma
lazio
napoli
mantova
)

当我在记事本上输入球队时,我的输出是球队列表(米兰、尤文图斯……)
如果我使用物理键盘输入球队,这个脚本对我 有用美味佳肴

,但如果使用虚拟键盘输入团队,我在记事本上没有列表:

虚拟键盘

如果我运行脚本自动键入团队

WinWait, *new  2 - Notepad++, 
IfWinNotActive, *new  2 - Notepad++, , WinActivate, *new  2 - Notepad++, 
WinWaitActive, *new  2 - Notepad++, 
MouseClick, left,  133,  117
Sleep, 100
Send, squadre

该脚本不会用团队列表替换团队

为什么该脚本仅在我使用物理键盘键入时才有效?
有没有不使用物理键盘用我的脚本替换单词、句子的解决方案?

对不起,如果我是菜鸟

4

1 回答 1

1

您可以使用该Input命令。

loop {
    While !RegexMatch(strCapture, "teams$") {
        Input, strUserInput, V L1, {BackSpace}  ; V: visible, L1: Character length 1
        If ErrorLevel = Endkey:BackSpace
            strCapture := SubStr(strCapture, 1, StrLen(strUserInput) - 1) 
        else
            strCapture .= strUserInput
        ; tooltip % ErrorLevel "`n" strUserInput "`n" strCapture "`n" ; enable this to see what actually happens
    }
    SendInput,
    (Ltrim
        {Backspace 5}
        milan
        juventus
        inter
        roma
        lazio
        napoli
        mantova
    )
    strCapture := ""
}
于 2012-11-30T11:29:50.733 回答