I have a acrobat script that I use through document javascript/pdfshell tools
The script works but the pdfs is not save, otherwise I have to open each pdf and save...
I want to run this script on multiple files and then save it automatically
Can be done this ?
acrobat javascript
var Count1 = this.numPages;
for (var p=this.numPages-1; p>=0; p--) {
for (var n=0; n<this.getPageNumWords(p); n++) {
if (getPageNthWord(p, n) == "DELETE") {
this.deletePages(p);
break;
app.execMenuItem("Save");
}
}
}