我有一个看起来像这样的applescript:
repeat
tell application "Adobe Reader"
open "filepath/name.pdf"
end tell
delay (60)
tell application "Adobe Reader"
open "filepath/name1.pdf"
end tell
delay (60)
tell application "Adobe Reader"
open "filepath/name2.pdf"
end tell
delay (60)
end repeat
我希望能够在打开 pdf 窗口后关闭它们。问题是这些 pdf 文件驻留在共享中,用户可以更新它们。该脚本仅在停止并重新启动时才会显示更新的 pdf。我不想手动执行此操作。我怎样才能做到这一点?