skibascott
IS-IT--Management
I need to add code to a webpage that will determine the version of acrobat reader installed.
My research shows that the following will do the job:
When i run this code i get an error saying that "app is undefined"
How do i define this?
My research shows that the following will do the job:
Code:
var version = app.viewerVersion;
if (version >= 6) // only do this if 5 or greater //
{
document.write("you have version 6")
}
When i run this code i get an error saying that "app is undefined"
How do i define this?