I have been a happy user of FineReader Pro on my Mac for some time. I usually batch process a number of files I have in DevonThink, usually between 10 and 50 at a time, using an Applescript (included below). Previously, FineReader Pro would process all of these seamlessly. Now, the process quits after just a few files, and I have to continuously restart it.
Just recently, I started receiving an error message, which stops the batch processing:
FineReader got an error: Could not execute the script because FineReader is busy processing a document. You can use the is busy command to determine FineReader’s state.
I have searched Google, without finding a good solution.
The script I am using is:
tell application “DEVONthink Pro”
set theSelection to the selection
repeat with theRecord in theSelection
set thepath to path of item 1 of theRecord
tell application “FineReader”
repeat until not (is busy)
end repeat
– add ocr text layer underneath and compress
export to pdf thepath from file thepath export mode text under image with use mrc
-- uncomment next line if you want text to be on top of image. Works well if scan is good quality
-- export to pdf thepath from file thepath export mode text over image with use mrc without keep pictures
end tell
end repeat
end tell
Perhaps this is related to my recent update to Mojave?
Or is there an error in the script?
Thanks!