Answered
Has anyone figured out yet how to deselect a radio button on a form in Acrobat 9.0?
Please do not suggest using check boxes instead of radion buttons. There has to be a way to unclick a button that has been clicked on either by setting something in the properties dialogue box or by running a java script. I've been searching for days and have tested various scripts and have not found one that works.
Please help me.
Thanks!
A 'Mouse Up' action for a button to turn off the radio button group with the name of 'Radio Button1':
this.getField('Radio Button1').value = 'Off';
To reset the field:
this.resetForm('Radio Button1');
George Kaiser