How can I bulk change text field properties?
After using auto detect fields to create a form, I'm often getting text fields with inconsistent properties. I'm hoping there is a way to bulk update them, specifically to set these properties:
Font = Helvetica
Check spelling = true
Multi-line = true
Scroll long text = true
Comb = false
I've always struggled with JavaScript, but my coworker was able to write a script to bulk change all checkbox fields to use a ✔ symbol (below). Unfortunetly neither of us can work out how to get a script working for the text field properties I need.
/* Checkbox all have tick symbol*/
for (var i=0; i<this.numFields; i++){
var cBox = this.getNthFieldName(i);
if(this.getField(cBox).type == "checkbox"){
this.getField(cBox).style = style.ch;}}Any help would be appreciated!
