Is there any way to reference the currently selected/active field name in an acrobat form? I have a mouseDown event, so hoping this is easy to capture. Thanks!
Instead of:
var myField = getField("fieldName");
Now, I have:
var myField = event.target;
Nice!