IMPORTANT ANNOUNCEMENT

These forums were permanently set to read-only mode on July 20, 2022. From that day onwards, no new posting or comment is allowed on the site, but the historical content remains intact and searchable.

A new location for posting questions about PlanetPress Suite is now available:

OL Learn - PlanetPress Classic (opens in new tab)

Topic Options
#33679 - 10/22/10 11:49 AM trigger layout according to data field
Chris Offline
OL Newbie

Registered: 10/22/10
Posts: 1
Hi

Is it possible to trigger a particular layout according to a data field AND choose a particular tray on a Fiery driven printer?
e.g. if field A has XYZ, use layout 1 and use tray 3 then field A has RSP use layout 2 and use tray 2

Top
#33695 - 10/26/10 10:13 AM Re: trigger layout according to data field [Re: Chris]
Claude D
Unregistered


Hi:

Yu can assign a condition to each layout, and an input tray to each layout.

The condition for layout1 will look something like this:
Code:
IF([FieldA]="XYZ",Print,Skip)


The condition for layout2 should be
Code:
IF([FieldA]="RSP",Print,Skip)

Top