Forum: The JavaScript Library
January 16th, 2014, 10:12 AM
|
Replies: 10
Views: 32,806
Re: Slipsheet on data change
You have to be using stacked imposition, for one thing. And you have to have the setting I mentioned in the Composition Settings.
Anyway, it's hard to answer these kinds of questions in the...
|
Forum: The JavaScript Library
January 15th, 2014, 04:23 PM
|
Replies: 10
Views: 32,806
Re: Slipsheet on data change
This is pretty much what we've been talking about in the rest of this thread. Just add a call to FusionPro.Composition.StartNewStack() in there, and in the Composition Settings, under Imposition,...
|
Forum: The JavaScript Library
September 24th, 2013, 05:33 PM
|
Replies: 10
Views: 32,806
Re: Slipsheet on data change
Sure, but with that code, you'll get each output record in its own stack. You still need to tell it to start a new stack only when the input data changes. This should work:
...
|
Forum: The JavaScript Library
April 3rd, 2013, 03:01 PM
|
Replies: 10
Views: 32,806
Re: Slipsheet on data change
Actually, in FusionPro 8.0, it's even simpler, without requiring anything in the JavaScript Globals:
if (FieldChanged("Image"))
FusionPro.Composition.SetBodyPageUsage("Slipsheet", true);Or,...
|