Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations TouchToneTommy on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

app.viewerVersion

Status
Not open for further replies.

skibascott

IS-IT--Management
Mar 18, 2004
82
US
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:

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?
 
yup app is not an inbuilt object of javascript.

i suggest u take a look at the plugin object of javascript...

Known is handfull, Unknown is worldfull
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top