我有一个图像文件夹,可以从一台摄像机全天定期拍照。我正在尝试编写一些可以从图像文件夹创建幻灯片的AppleScript,但也可以在不重新运行脚本的情况下更新更新。我开始尝试快速查看,但无法正常工作。关于如何最好地解决这个问题的任何想法?
更新 到目前为止,这就是我一起入侵的原因:
tell application "Finder" to set the_folder to get folder (choose folder)
tell application "Finder" to open the_folder
tell application "System Events"
tell process "Finder"
key code 124
keystroke "a" using command down
keystroke " " using option down
end tell
end tell
如果我在幕后添加照片,我不相信这是有效的。
答案 0 :(得分:0)
这就是我提出的,它完全符合我的需要。
tell application "Finder" to set the_folder to get folder (choose folder)
tell application "Finder" to open the_folder
tell application "System Events"
tell process "Finder"
key code 124
keystroke "a" using command down
keystroke " " using option down
end tell
end tell
repeat while true
delay 60
tell application "System Events"
tell process "Finder"
keystroke "a" using command down
end tell
end tell
end repeat
一些警告......由于它使用快速查看,因此在运行时您无法在计算机上执行任何操作,因为它在运行时无法激活任何其他应用程序(快速查看此时关闭)发生)。此外,重复部分需要快速查看拾取目录的新增内容而不会失去焦点。非常讨厌的东西,但我真的找不到另一个简单的方法来做到这一点!