Hi,
I use Hazel to monitor a folder and OCR any pdf as soon as it enters. Unfortunately, it changes both the creation and modification date to when the OCR was performed. Any ideas about how to fix this? See script pasted here. I don't seem to be able to post a screenshot of the Hazel Rule.
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
tell application "PDFpenPro"
quit
end tell