How To Save A .pdf Document Using Javascript
I am trying to use the following script to save my pdf document to a specific location: this.saveAs('C:/Users/logan/Desktop/test.pdf'); This script is saved in a folder level .js
Solution 1:
You should put that line of code into a function which you then make privileged. Then call that function instead of the plain saveAs().
This would work in Acrobat; I don't know enough about Bluebeam to determine whether it does too; you might contact Bluebeam support for an authorative answer.
Post a Comment for "How To Save A .pdf Document Using Javascript"