使用自动快捷键将包含剪贴板内容的.txt文档附加到文件中

时间:2019-07-06 14:10:54

标签: autohotkey

!w::
Sendinput ^c ; copy selection
Sleep 1000 ; gives time for the copy to work
FileAppend, `n`n%clipboard%, C:\Users\John Salter\ToAnki.txt; Add clipboard content to the end of a text file. Insert 2 new lines before inserting the clipboard with `n`n
Return

这是我一直在尝试使用的脚本。我担心“约翰”和“萨尔特”之间的空间,因此在其他位置尝试过,但仍然无法正常工作。

我没有收到任何错误消息。

剪贴板的内容已更改,因此问题出在第二行下方。

在查看帮助文档时,似乎可以使用FileAppend。

有人能找出问题所在吗?

谢谢!

1 个答案:

答案 0 :(得分:3)

  

与命令显示在同一行上的 comment flag 是   除非至少有一个空格或   标签左侧

FileAppend, `n`n%clipboard%, C:\Users\John Salter\ToAnki.txt ; Add clipboard content to the end of a text file. Insert 2 new lines before inserting the clipboard with `n`n