【发布时间】:2021-06-18 02:18:31
【问题描述】:
我写了一个热字串来在文本输入中插入德语双引号。
它们看起来像这样:
„“
这是我等待输入的热字串~+:
:* :~+:: {
Send "„{Left}“"
}
我希望它输出 „“ 并设置我的插入符号,因为我想在双引号之间而不是在它们之后写引用文本。
它实际上输出的是“„,我不知道为什么。
我的临时修复是故意交换 Send 函数调用中的字符:
:* :~+:: {
Send "“{Left}„" ; Need the quote characters in reverse order for some reason
}
这种方式对我有用,但真正解决这个问题的方法是什么?
使用 AutoHotkey v2 2.0-a129。
【问题讨论】:
标签: windows automation autohotkey