First of all, you need to define your pages, so open the "Pages" tab in your
pdf document just so you can see them.
Then in the FusionPro menu...go to Manage Pages>Page Usage
Here...double click each page so you can give each page a unique name. In
the example below, I have a pdf with eight pages, and have given them names
[choiceX_pgae#] In the example, [FieldName] is the controlling field - I use
drop-down menus to keep users from mistyping the controlling entry.
Then, create a rule - click the Callback button, then choose OnRecordStart
Then the rule looks something like this:
if (Field("FieldName") != "choiceA")
{
FusionPro.Composition.SetBodyPageUsage("ChoiceA_1", false)
FusionPro.Composition.SetBodyPageUsage("ChoiceA_2", false)
}
if (Field("FieldName") != "choiceB")
{
FusionPro.Composition.SetBodyPageUsage("ChoiceB_1", false)
FusionPro.Composition.SetBodyPageUsage("ChoiceB_2", false)
}
if (Field("FieldName") != "choiceC")
{
FusionPro.Composition.SetBodyPageUsage("ChoiceC_1", false)
FusionPro.Composition.SetBodyPageUsage("ChoiceC_2", false)
}
if (Field("FieldName") != "choiceD")
{
FusionPro.Composition.SetBodyPageUsage("ChoiceD_1", false)
FusionPro.Composition.SetBodyPageUsage("ChoiceD_2", false)
}
The "not equal" condition excludes all pages except the ones you list in the
result, so don't let the "false" fool you. You are basically saying, "don't
exclude (false) this page in composition." Your output will only compose the
pages you have defined for that choice in [FieldName].
Hope this helps...
--
AN INNERWORKINGS COMPANY
Managed Print & Promotional Solutions
ISO 9001:2000 Certified
Jackie L. Kemp
Director of Web-To-Print Services
Data Flow Media Systems, LP
1701 Tenth Street
Plano, Texas 75074
972-578-0899 ph
972-578-1341 fx
<http://www.dfms.com>
Solutions! DFMS has them.
Visit our new and improved website at <http://www.dfms.com> and see what we
can do for you.
Our Mission:
We will provide customized solutions based upon each client's business
environment that will allow them to efficiently procure, produce, manage,
warehouse and fulfill all their print and promotions materials.
The information contained in this communication, including attachments, is
strictly confidential and for the intended use of the addressee only; it may
also contain proprietary, price sensitive, or legally privileged
information. Notice is hereby given that any disclosure, distribution,
dissemination, use, or copying of the information by anyone other than the
intended recipient is strictly prohibited and may be illegal. If you have
received this communication in error, please notify the sender immediately
by reply e-mail, delete this communication, and destroy all copies.
From: <[EMAIL PROTECTED]>
Reply-To: FusionPro Users Forum <[email protected]>
Date: Fri, 25 Jul 2008 06:09:39 -0700
To: FusionPro Users Forum <[email protected]>
Subject: [fusionpro] Call PDF Pages Variably
Can someone tell me how to call pages in a PDF file in FusionPro variably
based on a field in the file? Thanks.
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-
FusionPro 5.0 Now Available!
Variable text on a curve and soft drop-shadows for variable text
LIMITED TIME upgrade offer of $299 per license for current customers:
http://fusionpro.printable.com/store/upgrade
New licenses available for $599 each at:
http://fusionpro.printable.com/store/
All FusionPro 5.0 customers to receive FusionPro 5.1 with
Adobe Acrobat 8 and InDesign CS3 support when released for FREE.
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-
--
Users of FusionPro Desktop have unlimited free email support. Contact
Printable Support at [EMAIL PROTECTED]
--
View FusionPro Knowledge Base, FusionPro Samples at
www.printable.com/vdp/desktop.htm
--
You are currently subscribed to fusionpro as: [EMAIL PROTECTED]
To unsubscribe send a blank email to
[EMAIL PROTECTED]
--
--
Note: All e-mail sent to or from this address will be received or otherwise
recorded by the e-mail recipients of this forum. It is subject to archival,
monitoring or review by, and/or disclosure to someone other than the
recipient. Our privacy policy is posted on www.printplanet.com
--
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-
FusionPro 5.0 Now Available!
Variable text on a curve and soft drop-shadows for variable text
LIMITED TIME upgrade offer of $299 per license for current customers:
http://fusionpro.printable.com/store/upgrade
New licenses available for $599 each at:
http://fusionpro.printable.com/store/
All FusionPro 5.0 customers to receive FusionPro 5.1 with
Adobe Acrobat 8 and InDesign CS3 support when released for FREE.
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-
--
Users of FusionPro Desktop have unlimited free email support. Contact Printable
Support at [EMAIL PROTECTED]
--
View FusionPro Knowledge Base, FusionPro Samples at
www.printable.com/vdp/desktop.htm
--
You are currently subscribed to fusionpro as: [EMAIL PROTECTED]
To unsubscribe send a blank email to [EMAIL PROTECTED]
--
--
Note: All e-mail sent to or from this address will be received or otherwise
recorded by the e-mail recipients of this forum. It is subject to archival,
monitoring or review by, and/or disclosure to someone other than the recipient.
Our privacy policy is posted on www.printplanet.com
--