I have a few text fields with default text within them. However I would like to be able to indicate that a user has changed this default when I or anyone else get back a filled out form. Is there a way to do this?
Thank you for your help in advance,
Roger.
Views
Replies
Total Likes
Hi Roger,
You could, with script on the exit event of the textfield. If the default text was "This is the default text", then the following would change the colour of the text to red.
if (this.rawValue != "This is the default text")
{
this.font.fill.color.value = "255,0,0";
}
else
{
this.font.fill.color.value = "0,0,0";
}
You can use a similar exit script to change the caption colour or to make different changes.
Hope that helps,
Niall
Views
Replies
Total Likes
I have posted a sample here: https://acrobat.com/#d=cLPn70g-VDWdJKtPOGPA2g
N.
Views
Replies
Total Likes