Copy link to clipboard
Copied
how to add acrobat javascript to set document actions automatically.
I would like to add javascript to "document will save" action in document action menu of Acrobat automatically.
Any guidance will be much appreciated.
Thank you,
Nivi
Copy link to clipboard
Copied
You can do it using the setAction method of the Document object, like this:
this.setAction("WillSave", "app.alert(\"The file has been saved.\",3);");
Note the second parameter includes the script to execute, but in the form of a String.
Copy link to clipboard
Copied
Thank you very much
Copy link to clipboard
Copied
When in doubt, check the reference: