Copy link to clipboard
Copied
I have a 52 page supplied PDF that includes signature panels. Normally to check trim and bleed sizes I use the print production tools and Set Page Boxes to check those dimensions, but they are greyed out on files with Signature Panels.
Is there a work around?
Divide the values by 72.
Copy link to clipboard
Copied
I'm assuming you have Acrobat, even though you posted in the Reader forum...
You can do it using a script. For example, this code will return the dimensions of the Crop box of the first page in the file:
this.getPageBox("Crop", 0);
Copy link to clipboard
Copied
Apple Script? or? How do I get both Bleed and trim sizes?
Copy link to clipboard
Copied
JavaScript. Replace "Crop" in the code above with "Bleed" or "Trim" to get those other boxes.
Copy link to clipboard
Copied
How do I run it?
Copy link to clipboard
Copied
Press Ctrl+J, paste the code into the window that opens, select it with the mouse and press Ctrl+Enter.
Copy link to clipboard
Copied
The script returns:
Page 1 has a width of 612 and a height of 792
true
On an 8.5 inch by 11" page size. How can the results be made to return inches?
Can the Crop and trim sizes be compared to see if they are equal or not?
Copy link to clipboard
Copied
Divide the values by 72.