Crops PDF to the actual content boundary, which gives better viewing on printouts etc (i.e. bigger text, less white space in margins). I do this manually all the time and this script sticks it in my help menu. To use in Adobe XI, create a "Privileged" folder to put user scripts like this one in, at root:\Users\(User)\AppData\Roaming\Adobe\Acroba…
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
app.addMenuItem({cName:"Crop and Print", cParent:"Help", cExec:"for (var p=0;p<this.numPages;p++) { var boxes = ['Art','Bleed','Trim','Crop']; for (b=0;b<4;b++) {this.setPageBoxes({ boxes[b], p, p, this.getPageBox('BBox', p))}};this.print();"}); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment