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
)

word update client をテキストの段落に置き換えようとしています。箇条書きの前と箇条書きの後に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 に答える