2016-05-06 31 views

回答

3

幾種方法。

你可以使用一個「延續部分」(解釋一下了三分之一到這裏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 
相關問題