我想创建一个Automator工作流程,它会自动将我用cmd + shift + 3/4截取的屏幕截图移动到指定的文件夹,同时还将我拍摄的截图复制到我的剪贴板。我已经有了automator来移动文件,但是动作“复制到剪贴板”#39;我添加的,只将文件名复制到剪贴板,而不是图像本身。 Automator确实显示了我的“复制到剪贴板”-action的结果。任何想法如何获取我使用automator进入我的剪贴板的截图?
答案 0 :(得分:1)
我找到了解决方案here
我进行了设置,以便这是在我的桌面文件夹上运行的文件夹操作。
on run {input, parameters}
set thisFile to item 1 of input
set the clipboard to (read thisFile as TIFF picture)
return thisFile
end run