Trigger multiple drop downs with single click?
I have four drop downs. Drop1, Drop2, Drop3, and Drop4. Each has an associated text field to show export values. I would like when clicking Drop1 then Drop2, Drop3, and Drop4 would trigger and place each of the drop downs values in the text fields. Doesn't sound too complicated to me, but I cannot find the correct script (and believe me I've searched). Can someone help me out and provide a script that would do what I'd like? Thanks guys.
Here's a script that comes very close to doing what I want. Kinda works but it will trigger only one drop down field and one text field. Is there a similar script that would trigger all the drop downs and text fields?
Sample script in the Custom Keystroke in Drop1:
if(event.willCommit)
this.getField("Drop2").value = event.value;
if(event.willCommit)
this.getField("Drop3").value = event.value;
if(event.willCommit)
this.getField("Drop4").value = event.value;
