Answered
hi all,
could anyone tell me, how do you exit the client app after checking of incompatible adobe reader? My problem is following:
(Dynamical) formulas creating on Adobe Prof. 8 do not fit with layout properties of adobe reader 7.x backwards? All the element position would manipulated and nothing matches the origin layout.
Hence, after opening those formula i want to check of adobe reader version, and the formula wont start if the current version is less then 8. The user get an msg. about installing adobe reader from 8.x
Supposing to use xfa.form.close() or app.close() but i dont find it and need your help now!
Thanks for your help i. a!
Djinges
In Acrobat you can use...
this.closeDoc(true);
...to close the current PDF but not the whole application.
For LiveCycle there is even no alternative.
You only can check the application version in the initial event and prompting a message for the users, that the need a newer version.
if (typeof(app.viewerVersion) != "undefined")
if (app.viewerVersion < 8.0)
{
app.alert({cMsg:"ATTENTION: To use this document you need Adobe Reader 8.0 or higher!",cTitle: "ATTENTION:", nIcon: 1, nType: 0} )
}
else
{}
radzmar
• LoveCycle Blog
Documents you need:
• LiveCycle Designer ES2 Docs