These forums are now Read Only. If you have an Acrobat question, ask questions and get help from one of our experts.

Identify active field name?

ACraigL
Registered: Oct 27 2010
Posts: 2
Answered

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!

ACraigL
Registered: Oct 27 2010
Posts: 2
Got it!

Instead of:
var myField = getField("fieldName");

Now, I have:
var myField = event.target;

Nice!