Expand my Community achievements bar.

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.