I had created a pdf in Acrobat Pro which has a 'drop down list' that,
upon selection, auto populates multiple fields. I accomplished this by
using addition the following under "Custom Keystroke Script":if(
event.willCommit ){ if(event.value == " ") this.resetForm(["field1",
"field2", "field3",]); else SetFieldValues(event.value);}Then in the
javascript "SetFieldValues" I added:var Data = { "selection1" :{ field1:
"item1", field 2: "item2", field 3: "item 3"}, "selection2" :{ field1:
"item4", fie...