Hello,
I am assisting in the creation of a form that will be used by support personnel to send to clients.
I would like to know if it is possible to make a form where if the user clicks, let's say the check box, 3 or 4 pre-defined sentences are displayed. If the box is not checked, I do not want those sentences displayed.
I am using Acrobat Pro extended 9
Thanks
In the actions tab of the check box using a mouse up event put the following code:
var txtFld = this.getField("Text1");
var cbStatus = (event.target.isBoxChecked(0)) ? "Sample Text" : "";
txtFld.value = cbStatus;
You can use "\n" in the text if you want a new line (provided the text field is set up as multiline).
Hope this helps.