我在工作中使用Adobe Acrobat Pro 9来编辑大量扫描的pdf文档。这些都不是OCRed。我需要快速邮寄这些文件的信息在第一页上,但我的老板希望这页面在后面。我可以使用缩略图将第一页移动到后面,但是对于大量超过20页的pdf,这会变得乏味。到目前为止,我正在尝试修改我在Bremen_Matt的帖子中找到的脚本:
for (i = 0; i <= this.numPages/2-1; i++)
this.movePage(this.numPages-1,this.numPages/2-i-1);
How to write javascript to reorder pages of a pdf document?
我几乎可以让它工作,但是当我尝试时:
for(i=0;i<=this.numPages/2-2;)
this.movePage(this.numPages-1);
或
for(i=0;i<=this.numPages;i)
this.movePage(this.numPages-1);
我最终崩溃了程序。你有什么想法吗?谢谢!