Bulk change in ALL of my "form text fields"?
Is there a way to apply a command that makes a bulk change in ALL of my "form text fields"?
I am using the script below to add instructional text to my text field that will disappear when clicked.
But the script below adds the instructional text only for ONE form text field. I need to do this 300 times.
I want to avoid having to go to all my 300 form text fields, open them and insert instructional text to my form text fields.
if (!event.value) {
event.value = "Instructional text goes here";
event.target.display = display.noPrint;
} else {
event.target.display = display.visible;
}
