Who wants a layout in PS anyway? Dang clients. You don't mean this is a print job? Hope you're getting paid up front. To include the PDF preset's crops you need to edit the script. Look for the 3 lines where the crop page is set to trim box and change to bounding box. So this: if colorMode is "CMYK" then set myOpenOptions to {class:PDF open options, constrain proportions:true, mode:CMYK, resolution:res, use antialias:aa, crop page:trim box} else if colorMode is "RGB" then set myOpenOptions to {class:PDF open options, constrain proportions:true, mode:RGB, resolution:res, use antialias:aa, crop page:trim box} else if colorMode is "Lab" then set myOpenOptions to {class:PDF open options, constrain proportions:true, mode:Lab, resolution:res, use antialias:aa, crop page:trim box} end if end if end if Needs to be: if colorMode is "CMYK" then set myOpenOptions to {class:PDF open options, constrain proportions:true, mode:CMYK, resolution:res, use antialias:aa, crop page:bounding box} else if colorMode is "RGB" then set myOpenOptions to {class:PDF open options, constrain proportions:true, mode:RGB, resolution:res, use antialias:aa, crop page:bounding box} else if colorMode is "Lab" then set myOpenOptions to {class:PDF open options, constrain proportions:true, mode:Lab, resolution:res, use antialias:aa, crop page:bounding box} end if end if end if
... View more