Reputation: 1573
I'm using Adobe Acrobat to create a form, and am using JavaScript to implement additional functionality. I can't find a description anywhere of the control classes for the form (for example, what are the member variables of a CheckBox?).
Could someone please point me in the right direction?
What I'm trying to do is modify the value in a TextBox based on the values in other TextBoxes and the checked status of corresponding CheckBoxes. If possible, could someone give me an idea of how to do this?
Thanks in advance.
Upvotes: 0
Views: 1295
Reputation: 2519
Javascript documentation for Acrobat 10.
You can set the value of a text field using code like:
this.getField("My Text Field").value = "New Value";
Upvotes: 3