Is there a way to capture the information from an Acrobat Dialog? For example, is there a way to capture a string from the Acrobat Dialog that appears when I verify a signature?
(2.) Copy, modify, and paste this javascript code to an event ( button -mouse up, page open, button - mouse enter, etc.)
var t = this.getField("textInput"); // the target field var cResponse = app.response({ cQuestion: "What is your full name?", cTitle: "Name in signature field"}); { if ( cResponse == null) app.alert("Please complete the question."); // if Cancel is selected else app.alert("You responded, \""+cResponse+"\", is this correct?",2); } t.value = cResponse; // places the data from the dialog to the target field
My favorite quote - "Success is the ability to go from one failure to another with no loss of enthusiasm.
(2.) Copy, modify, and paste this javascript code to an event ( button -mouse up, page open, button - mouse enter, etc.)
var t = this.getField("textInput"); // the target field
var cResponse = app.response({
cQuestion: "What is your full name?",
cTitle: "Name in signature field"});
{
if ( cResponse == null)
app.alert("Please complete the question."); // if Cancel is selected
else
app.alert("You responded, \""+cResponse+"\", is this correct?",2);
}
t.value = cResponse; // places the data from the dialog to the target field
My favorite quote - "Success is the ability to go from one failure to another with no loss of enthusiasm.