Jump to content

Image Question


Recommended Posts

I have a certificate that has text and two images. 1 of the images is a "non printing object" and the other image needs to print along with the text. I know there's an option to Suppressthe background, so the non-printing object will only show up in the proof, but not in the print ready PDF.

 

I can't figure out how to Suppress the background, but still have the second image appear in the print ready PDF.

 

I tried selecting the image as a variable graphic frame, but that's not working and that doesn't seem correct, because the image will never change. I will aways be the same.

Link to comment
Share on other sites

You will have your printing item on the background and the nonprinting item as a separate resource and make a rule to assign it to a graphic box the size of your document. You can name the graphic box "nonprinting". Create an OnRecordStart rule to suppress the nonprinting box when it's printing or show it when its a preview.

 

//OnRecordStart

 

//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)

FindGraphicFrame("nonprinting").suppress = false;

 

else

FindGraphicFrame("nonprinting").suppress = true;

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...