Jump to content

Acrobat layers composing from Fusion Pro


Damien

Recommended Posts

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

Damien

no position layer.pdf

Position layer.pdf

Link to comment
Share on other sites

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();

Link to comment
Share on other sites

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.

Guest
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...