Crop slug areas in Pdf
Hi All,
I need slug information only for cover page (page 1). Rest of pages need not the slug portions. So am trying to crop the pages to remove slug areas except cover page using crop tool (with trim size).
Is it possible with scripting? I am novice in Acrobat scripting, i tried using with this forum previous thread.
var arrMedia = this.getPageBox({cBox:"Trim", nPage:1});
arrMedia[0] = 0;
arrMedia[1] = 0;
arrMedia[2] = 0;
arrMedia[3] -= 60;
this.setPageBoxes({cBox:"Trim", nStart:1, nEnd:this.numPages-1, rBox:arrMedia});
Thanks,
K
