How to export/import PDF's data with java script?
Good evening, I am trying to create a way to export, and import PDF's data with java script.
Here is what I have so far in terms of code:
this.extractPages({
nStart: this.numPages-1,
cPath: 'C:\Users\dell\Documents\Adobe REC complete' + this.documentFileName
});
this.closeDoc(false);
It will delete the pages but not export the data to the specified folder.
The java script runs after deleting all-but-one page, so perhaps my 'this.numpages' is wrong
