Your achievements

Level 1

0% to

Level 2

Tip /
Sign in

Sign in to Community

to gain points, level up, and earn exciting badges like the new
Bedrock Mission!

Learn more

View all

Sign in to view all badges

SOLVED

Capture Acrobat version in javascript

Avatar

Level 2

Is there a JavaScript command in LiveCycle to capture version of Acrobat that the user is using?

Eg "Acrobat 9 Pro" or "Reader 7.05"

Thanks,

Issa

1 Accepted Solution

Avatar

Correct answer by
Level 10

It's the same for Javascript or Formcalc - xfa.host.version; (Formcalc without the semicolon).

So you could do this.rawValue=xfa.host.version; to have the value in a field.

There is also xfa.host.appType; which will return the application.

View solution in original post

1 Reply

Avatar

Correct answer by
Level 10

It's the same for Javascript or Formcalc - xfa.host.version; (Formcalc without the semicolon).

So you could do this.rawValue=xfa.host.version; to have the value in a field.

There is also xfa.host.appType; which will return the application.