0
這段代碼粘貼一個1行文本:如何在Autohotkey中發送多線文本?當按下WINKEY + ALT + C
#!c::
SendInput, Some random text
Return
但我需要過去更大的文本,多行。
是否有某種\n
我可以使用?如果我能夠在txt文件中獲得確切的文本並將其按原樣粘貼,那將非常棒。
這段代碼粘貼一個1行文本:如何在Autohotkey中發送多線文本?當按下WINKEY + ALT + C
#!c::
SendInput, Some random text
Return
但我需要過去更大的文本,多行。
是否有某種\n
我可以使用?如果我能夠在txt文件中獲得確切的文本並將其按原樣粘貼,那將非常棒。
幾種方法。
你可以使用一個「延續部分」(解釋一下了三分之一到這裏https://autohotkey.com/docs/Scripts.htm)
#!c::
SendInput,
(
blah
blah
)
return
或者你可以使用顯式轉義換行符`N:
#!c::
SendInput, blah`n`n`n`n`n`nblah
return
或者您可以從磁盤讀取文本文件並寫出來(但您可能需要更改sendmode和/或處理文本文件中需要轉義的字符):
#!c::
FileRead, blah, Path and Name of Text File
SendInput, %blah%
return