Skip to main content
Participant
April 23, 2020
Answered

Enter form edit mode from javascript

  • April 23, 2020
  • 1 reply
  • 595 views

Hello.  I'm creating a simple script to place form fields on a document.

There is a high probability that at least one of the fields will have to be moved at run time due to some variability in the document layout.

 

Is there a way to programatically enter form edit mode at the end of my script?  I realize it only saves a button click but if it's possible, why not

This topic has been closed for replies.
Correct answer try67

Yes, like this:

app.execMenuItem("AcroForm:Forms_EditFormInAcrobat")

1 reply

try67
Community Expert
try67Community ExpertCorrect answer
Community Expert
April 23, 2020

Yes, like this:

app.execMenuItem("AcroForm:Forms_EditFormInAcrobat")

Participant
April 23, 2020

Awesome, thank you.