Hi, I'm new to acrobat JS and wanted to find out how to setup a print button script that will show text boxes that are hidden but printable. I've already setup a print button that executes the print function and at the same time, I want to print text boxes that are hidden but printable. Is there another way of doing this by scripting other than using hide/show field?
Can it be something close to this? Script does not work.
var show = event.target.isButtonPush(0) ?display.visible:display.hidden;
this.getField("Text9").display = show
George Kaiser