Set Different Default Highlight Colors For Fields?
Is it possible to set different default field highlight colors? Adobe Pro X
For example; the below code I found sets all document highlights to red
if (!app.viewerVersion < 6) { // for version 6 or above
app.runtimeHighlight = true; // turnon field highlighting
app.runtimeHighlightColor = color.red; // set field color
}
Is it possible to set a default field highlight of "textField1" with a color.blue and "textField2" to color.red?
I tried the script below for giggles: (of course, it did not work)
var test1 = this.getField("textField1");
var test2 = this.getField("textField2");
test1.runtimeHighlightColor = color.blue;
test2.runtimeHighlightColor = color.red;
I couldn't find anything in the API reference either.
