I'm trying a simple click a radio button to select another radio button. I'm getting this error message:
GeneralError: Operation failed.
XFAObject.rawValue:2:XFA:form1[0]:page2[0]:assocType[0]:RadioButtonList[0]:click
Argument mismatch in property or function argument
Here's my script:
if (this.rawValue == 1) {
page2.wklyHours.RadioButtonList.rawValue
=
3;
else
{
page2.wklyHours.RadioButtonList.rawValue
= 0;
}
Thanks,
MDawn