These forums are now Read Only. If you have an Acrobat question, ask questions and get help from one of our experts.

java script code

nisha
Registered: Jul 24 2007
Posts: 2

java script code to display the version of acrobat reader in client machine if it's not installed

My Product Information:
Acrobat Standard 8.0999999999999996447286321199499070644378662109375, Windows
pddesigner
Registered: Jul 9 2006
Posts: 858
You can run this script as a Page Open or Document Level JavaScript. You could add the URL to Adobe Reader if you so desire. When the dialog box button is clicked, the PDF will close.

if (app.viewerVersion < 6) {
app.alert("You must have Acrobat Reader 6.0 or later to use this form.")
this.closeDoc(true)
}

My favorite quote - "Success is the ability to go from one failure to another with no loss of enthusiasm.