InDesign to PDF form with checkboxes that auto check when text is entered - still editable in InDesign?
I designed a form using InDesign and exported it to Interactive PDF.
I need to cause each checkbox to "check" when any text is entered in the text field beside it. I have over 30 checkboxes, and figured how to do this using the following code in Acrobat Pro (as a custom calculation script under the text box properties).
if (event.value=="")
{this.getField("Check Box 3").value="Off"}
else
{this.getField("Check Box 3").value="Yes"}
It seems to work, however before I repeat this 30 times for every single text box / checkbox combo, is there a way to make further edits to the layout in InDesign after adding all these custom check box actions? Do I really have to add them all each time I export to interactive PDF?
