I'm an using LIveCycle v8.2.1. Currently we have several Word Perfect forms that are build off of macros. The user will open the Word Perfect form & a box will pop up asking different questions such as name, address, location, etc & after the questions are answered all of the answers to those questions are dumped into certain areas of the form with pre-written words.
My question is, can I do the same with Adobe LiveCycle? I know I can insert drop down boxes & stuff with LiveCycle but is the pop up boxes so users can enter their name, To, From, etc possible?
Basically, I just want to be able to create something for the user to opne a form named memo.pdf. As soon as they open it, they get a pop up box asking them for their name, who this memo is going to, & subject. As soon as they enter the last item (subject) & click next or OK, all of that information from the pop up boxes are populated to the memo in desigated areas...is this possible?
Solved! Go to Solution.
Views
Replies
Total Likes
You can use an app.response (documenteed in the Acrobat javascript API) to popup questions and return the answers into variables.
something like this:
var answer = app.response("What is your Name?")
After the user answers the question their answer is contained in the variable answer. The different options they can choose can be tested to make sure they didn't cancel out of your question. See the docs to get the right codes for each possible for response.
Paul
Views
Replies
Total Likes
Hi,
Yes, it is possible. You can use the execDialog method. This is quite involved to do from scratch (I haven't done it), but http://www.windjacksolutions.com do have an Acrobat plugin that makes developing dialogs much easier.
Hope that helps,
Niall
Views
Replies
Total Likes
You can use an app.response (documenteed in the Acrobat javascript API) to popup questions and return the answers into variables.
something like this:
var answer = app.response("What is your Name?")
After the user answers the question their answer is contained in the variable answer. The different options they can choose can be tested to make sure they didn't cancel out of your question. See the docs to get the right codes for each possible for response.
Paul
Views
Replies
Total Likes