// Ctrl J to get to javascript and highlight the whole script and hit the Num Enter Key. // Acrobat change checkboxes to crosses (X) // Loop throught the fields in the document for (var i = 0; i < numFields; i++) { // Get a reference to the current field var f = getField(getNthFieldName(i)); // Change the properties of certain types of fields switch(f.type) { case "checkbox": f.style = style.cr; // Set check boxes style to cross f.textSize = 0; // 0 = Auto break; case "radiobutton": f.style = style.cr; // Set check boxes style to cross f.textSize = 0; // 0 = Auto break; // case "text": // f.textFont = font.Helv; // f.textSize = 10; // break; } }