I have several fields in my form that I change the fill color on the Exit event as patt of a validation routine.
Textfield1.ui.oneOfChild.border.fill.color.value = "255,204,153";
When the print button is clicked, I want to reset all fields to white.
Is it possible to do this for all fields at once? Or do I have to use:
Textfield1.ui.oneOfChild.border.fill.color.value = "255,255,255";
for each field?
Many Thanks