スクリーンショットを撮り、画像をデスクトップに保存し、日付という名前を付けるスクリプトを作成しようとしています。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