Answered
Ok let's try again:
I have designed a form (imported from excel spreadsheet).
My question is, can I place a text box within the form that would reflect the choice elsewhere in the form? - for example, I have a field called APO in the main form. Below that form is a 3 column list with a radio button next to each choice (I have programmed button so that only 1 item may be chosen).
What I am looking to do is have the APO box reflect the choice selected choice selected in the list by the person filling out the form. Is that possible?
I am using Acrobat 9.0.0 standard and I guess would be considered an sort of an intermediate user.
I added a text field and three radio buttons. the values for the radio button respectively are "One", "Two", "Three".
var myVal = getField("Rad.MyChoice");
if(myVal.value === "Off")
{
this.event.value = "";
}
else
{
this.event.value = myVal.value;
}
I added this script to my text field in a custom calculation script that I want the value of the selected radio button to appear.
StevenD