Hello All,
I need a little help with this pdf form. I am trying to make the checkbox, once checked "on", say a message like "I agree to this form", in the text field to the right. Any help would be great! Thanks in advance!
My form is attached.....
Solved! Go to Solution.
Views
Replies
Total Likes
Hi,
Script like this will get what you want:
if (this.rawValue == 1)
{
MessageBox.rawValue = "I agree to this form";
}
else
{
MessageBox.rawValue = "";
}
Views
Replies
Total Likes
Hi,
Script like this will get what you want:
if (this.rawValue == 1)
{
MessageBox.rawValue = "I agree to this form";
}
else
{
MessageBox.rawValue = "";
}
Views
Replies
Total Likes
Thanks! Worked Perfectly!
Views
Replies
Total Likes
Views
Likes
Replies
Views
Likes
Replies