使用PDF附件在Apple Notes中创建新笔记

时间:2016-07-25 16:40:16

标签: pdf applescript

我打算用Hazel来观看文件夹。 当pdf或任何文件被放入文件夹时,我想在Apple Notes(在El Capitan上)创建一个注释,文件作为附件。

到目前为止,我的进展有限,是作为Hazel规则中的嵌入式脚本创建的:

tell application "Notes"
   make new note at folder "Notes" 
end tell

这会创建一个空白便笺确定。

从研究中,我可以看到我需要在注释文本的正文中创建一个HTML img标记,指向文件夹中的附件,但我对如何实现这一点的知识超出了我...任何帮助欢迎: )

1 个答案:

答案 0 :(得分:0)

像这样的东西

tell application "Notes"
    set mynote to make new note at folder "Notes"
    make new attachment at mynote with data "mypdf.pdf"
end tell