0

这是我的自动热键代码:

::\update client::
(
Hi team,

We are emailing to advise you an update on following job:
#CTRL-B Here
Here
•   Our Reference:
Your Reference:
#CTRL-B Here
)

我正在尝试用一段文本替换单词更新客户端。我想在要点之前和要点之后发送Ctrl+键。B我该怎么做?有人可以帮我语法吗?谢谢

4

2 回答 2

1

您需要划分文本。

::\update client::
SendInput
(
Hi team,

We are emailing to advise you an update on following job:
)
SendInput, ^b
SendInput
(
Here
•   Our Reference:
Your Reference:
)
SendInput, ^b
Return
于 2012-11-28T21:59:16.060 回答
1

这是我使用换行符的解决方案。

::test::
    SendInput Hi team,`n`nWe are emailing to advise you an update on following job:
    SendInput ^b
    SendInput Here`n•   Our Reference:`nYour Reference:
    SendInput ^b
    return
于 2012-11-28T22:07:54.180 回答