Answered
Hi,
I have a pdf doc with a set of fields, 3 radio buttons with the same name (Radio button1) with export values 0,1,2 and a Text box field (Text 1)
I want the export value for the radio button selected to transfer to Text1.
I'm not sure how to start with the Java script.
Any help would be greatly appreciated.
thanks!
Or for each widget of Radio button1 for the "Mouse Up" action:
this.getField("Text 1").value = this.getField(event.traget.name).value;
George Kaiser