论坛帮助 |
社区圈子 |
日历事件 |
2008-05-29, 09:13 | #1 | ||
|
|||
买金币加微信:68066700
等级: 八袋长老
|
原始脚本: // DELETE PAGES WITHOUT TEXT from the PDF document // IMPORTANT: This script assumes that page is blank if it does not contain any "pdf words" try { // save a copy of original document var newName = this.path; var filename = newName.replace(".pdf","_Original.pdf"); this.saveAs(filename); for (var i = 0; i < this.numPages; i++) { numWords = this.getPageNumWords(i); if (numWords == 0) { // this page has no text, delete it this.deletePages(i,i); } } } catch(e) { app.alert(e); } 现改为: try { del(); } catch(e) { app.alert(e); } function del(){ for (var i = 0; i < this.numPages; i++) { numWords = this.getPageNumWords(i); if (numWords == 0) { if(i == 0) { this.deletePages(i,i); } else{ this.deletePages(i,i); del(); } } } } |
||