conditional form field fillColor vs no color
I have form which can be filled out manually or electronically. One section has a comment box with multiple lines "printed" on the page. Since I can't modify line spacing to line up with the printed lines, I would like to have a validation script to fillColor with white when an entry is made in the field (this will cover up the lines) or with no fillColor if there is no entry (which will leave the lines visible). Or it could be phrased the other way around. But I don't know how to write the script to describe a "no color" situation. I found something similar on another post between two colors, but not with no color. , but I don't know how to fix it. .
if (event.value == "") event.trarget.fillColor = color.red; //how do i say no color?
else event.target.fillColor = color.white;
TIA - Michelle
