Jump to content

Maybe I am over thinking this...


methogod

Recommended Posts

Simple NCR. 2UP (stacked and numbered).

 

Normally i would just print each output page 2 or 3 times depending on the NCR. But this job is color pg1, B&W pg2.

 

My digital press will adjust if black detection is on, but I never had to output 2 pages of each.

 

will a rule, repeat each page and record, or do i need to start with 2 pages in my original pdf.

Link to comment
Share on other sites

You can repeat a record like this:

FusionPro.Composition.repeatRecordCount = 3; // repeats a record 3 times

 

If you want to change which page is enabled based on the number of times a record has been repeated, you can do that like this:

// Prints page 1 the first time the record is repeated and page 2 the 2nd and 3rd time the record is repeated
FusionPro.Composition.SetBodyPageUsage(1, FusionPro.Composition.repeatRecordNumber == 1);
FusionPro.Composition.SetBodyPageUsage(2, FusionPro.Composition.repeatRecordNumber > 1);

 

Both of those rules would go in OnRecordStart

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