I often use Acrobat security to password-protect files that I share outside my group at work. However, sometimes after I set up the password and try to save the PDF, I receive the message: The document could not be saved. There was a problem reading this document [107]. The files are sometimes created with different versions of Acrobat; I use Acrobat 5.0 when setting up security.
Does anyone have a solution to this problem?
Here is a Document Level JavaScript you can try.
if (app.viewerVersion < 8) {app.alert("You must have Adobe Reader 8.0 to use this form." 3)
this.closeDoc(true)
}
You could insert the web address for Adobe Reader in the app.alert response.
Although the file is a version 5, it will open in version 8. You might also have to enable Adobe Reader Usage Rights if it is available in your version of Acrobat.
My favorite quote - "Success is the ability to go from one failure to another with no loss of enthusiasm.