Jump to content

Watermark on preview


p.kennedy

Recommended Posts

Hi All, I am having some trouble with getting a watermark to appear on proofs. I have a graphic box set on top of everything with a rule containing this java code, and a resourse image called proof. Any thoughts would be appreciated!

 

//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("Proof");

}

 

else

{

return NullResource();

}

Link to comment
Share on other sites

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...