Copy link to clipboard
Copied
I want the default values in a form set to not printing. That way if users want to fill out the form with pen, they can simply print it.
How should I do this?
Thanks! Martine
Copy link to clipboard
Copied
Add this to the Custom Format Script. It will change the field printing property when the user enters data or the form is reset. But be sure to reset the form before distributing.
if (event.target.value == event.target.defaultValue) {
event.target.display = display.noPrint;
}
else {
event.target.display = display.visible;
}
Find more inspiration, events, and resources on the new Adobe Community
Explore Now