Hello!
Can someone tell me if there is anything wrong with this script. not working on my end.
Sorry about the copy paste but I don’t see know how to make it nicely for post.
Export to Devonthink with OCR within Devonthink using the Finereader engine.
on run argv
if (count of argv) is greater than 0 then
repeat with theItem in argv
tell application id "DNtp" to launch
try
set thePath to theItem as text
tell application id "DNtp"
set theRecord to ocr file thePath to incoming group
end tell
end try
end repeat
end if
end run