Damien Posted December 23, 2013 Posted December 23, 2013 Not sure how to ask this. When I export a PDF from InDesign, I can have it create Acrobat layers. One layer for position and the other layer for the image. I can toggle them on and off in Acrobat layers. My question, when I toggle the position layer off or tell it not to print. Then compose the document. The position layer still composes and shows up. I am assuming that this has to do with the compliance level is only 5.0 compatible. Has anybody else tried this and has had any luck or should I just continue my old ways of deleting the position layer. I attached some screenshots of the layers. Thanks Damienno position layer.pdfPosition layer.pdf Quote
jwhittaker Posted December 24, 2013 Posted December 24, 2013 Damien You can create another graphic frame and assign the position layer image and then use this rule to only see it while proofing but have it suppress during composition. //access the “isOnlinePreview” property and the “isPreview” property onlinePreviewVal = FusionPro.Composition.JobOptions.isOnlinePreview; desktopPreviewVal = FusionPro.Composition.isPreview; //if this is a preview composition or a desktop preview //then return the text “PROOF” if (onlinePreviewVal == "Yes" || desktopPreviewVal == true) return Resource("Position layer.pdf"); else return NullResource(); Quote
jwhittaker Posted December 24, 2013 Posted December 24, 2013 I created a sample template for you to see what I was talking about. You can adjust as needed. Good Luck.test.zip Quote
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.