我有以下使用 PDFpen 对文档进行 OCR 的 Applescript。
tell application "PDFpenPro"
open theFile as alias
tell document 1
ocr
repeat while performing ocr
delay 1
end repeat
delay 1
close with saving
end tell
end tell
最后的重复块等待文档完成,然后脚本的其余部分继续。我似乎无法在 rb-appscript 中复制这部分逻辑。任何帮助,将不胜感激。