I know we have a few graphic designers and layout people here, so I hope an Adobe Acrobat question isn’t unreasonable?
I have a form with some text boxes and checkboxes which have to be filled out by the user. I’d like to set them to be visible, but not to print if they’re not filled out. I’ve done some research, but this seems like it will only work if the fields are numeric, not general text?
The custom validation script I’m trying is:
var f = this.getField("Model Name");
if (f.value > 'a')
f.print = true;
else
f.print = false;
Does this make sense? Is ‘a’ the right way to code a string (and is a the lowest possible value of that string?)?
Thank you!