我有一个简单的 Applescript,它在您选择的文件夹中拍摄许多图像,然后使用图形转换器镜像图像。如果我把它放在一个新的 AS 文件中,这个脚本就会运行;但是,如果我再次尝试运行它,我会收到以下错误“无法获取应用程序“GraphicConverter”的窗口 1。无效索引。”
此脚本始终在 OSX 10.6 上运行
我正在运行 OSX 10.7.4 和 Graphic Converter 8.1(最新版本)。
这是脚本
tell application "Finder"
activate
set loopFinish1 to 0
set pathName to (choose folder with prompt "Choose Folder Containing Images")
set fileList1 to every file of folder pathName
set loopFinish1 to count of items of fileList1
end tell
tell application "GraphicConverter"
activate
repeat with i from 1 to loopFinish1
set currentFile to item i of fileList1
open currentFile as alias
mirror window 1 in horizontal
close window 1 saving yes
end repeat
end tell
这真让我抓狂!