Hello,
I am trying to change a text box based on if a check box is checked, here's what I have in the calculate tab of the text box:
if (CheckBox53.rawValue == 1)
{
event.value = "Fail!";
}
else
{
event.value = "";
}
This does not seem to work, does anyone have any ideas?
do not use rawValue in acroform
livecycle has no idea what event.value means
which one do you want?