AcroPDF form-> button OnFocus event for 2nd click
In an Acrobat PDF form, I can assign an OnFocusEvent to show some other field if a user pushes on a button in form.
I simply add it to button properties>action>on focus>run a js
the Javascript event used is as in following:
this.getField("point.2").display = (event.target.value=="Off") ? display.hidden : display.visible;
But, is it possible to assign an event for a second click for showing some other fields?
