Custom script for dropdown value for PDF Form
I am working on a form that calculates a bunch of different fields based on a few inputs (for a table top game, pathfider 2e if anyone is interested) I have 6 fields that generate a number (STR, DEX, CON, INT, WIS, CHA). I want to make a drop down in a different section of the form that has those are options, and will pull the number from the original field as the export value. So for instance, if you select STR from the downdown menu, I want that options Export Value to be the vlue from the field "STRMod".
I tried usinng the field name i want to pull as the entry for the export value.
I also tried:
this.getField("STRMod").value
I also tried:
event.value = this.getField("STRMod").value
No avail
Any ideas? is this possible?
