我正在尝试制作一个脚本,该脚本将拍摄屏幕截图,将图像保存到桌面,并将其命名为日期。类似于如果我使用 cmd + shift + 3 会发生什么。唯一的问题是图像的名称只是“屏幕”而不是我指定的整个名称。有人知道怎么修这个东西吗?
on run
set theDesktop to POSIX path of (path to desktop as string)
set theCurrentDate to current date
set shellCommand to "/usr/sbin/screencapture " & theDesktop & "Screen Shot" & theCurrentDate & ".png"
do shell script shellCommand
end run