Jump to content

Search the Community

Showing results for tags 'pages'.

  • Search By Tags

    Type tags separated by commas.
  • Search By Author

Content Type


Forums

  • Welcome
    • Start Here!
    • News
  • Software-Related Talk
    • Documentation
    • Getting Started
    • The JavaScript Library
    • FusionPro® VDP Creator
    • FusionPro® VDP Producer
    • FusionPro® VDP Server (API)
    • FusionPro® Expression®
    • MarcomCentral®
  • Support
    • Issues, Questions, Etc.
    • Digital Workflow Documents
    • Fonts
  • Off Topic
    • Customer Polls
    • Job Board (Moderated)
    • Reviews, Rants, and General Musings

Find results in...

Find results that contain...


Date Created

  • Start

    End


Last Updated

  • Start

    End


Filter by number of...

Joined

  • Start

    End


Group


About Me


Location


Occupation


FusionPro VDP software version


OS


Acrobat Version


Homepage


ICQ


AIM


Yahoo


MSN


Skype


User Title

Found 3 results

  1. I want to be able to place a text field (with a white background) which would cover up some text on every page of the source PDF file. If I have a PDF parts manual, 100 pages long, but they want to cover up a piece of text (the serial number) on it and replace with a new serial number, as the parts serial numbers have changed. Thanks, David Scott
  2. Hello, I'm having some issues with a tricky file I need to compose. I have 2 documents and 1 set of data to use for both. Normally to pull up a page you could use a Field that has been defined in the data for that purpose, however there isn't one exactly for this case. Which 6-page document I use is determined by the value of the ASK field. http://i.imgur.com/aXzSuCz.png Now I've set up an OnRecordStart rule that checks if there is a value in that field or not Like so: http://i.imgur.com/2iE7EyO.png And the body pages like so: http://i.imgur.com/o5ppLCn.png It seems pretty straightforward, if there is no value or a null value then the 6 body pages that will be composed for a record will be NO ASK-P1 through P6. However all I get are errors. http://i.imgur.com/UZ8t42m.png What am I missing?
  3. Please Help! I'm creating a new business card template for a new customer that has a different back based upon the title. So, I've setup a 3-page template and named the pages Front, BC and BCBI. If the person's title in the title field is Account Supervisor, Senior Account Supervisor or Field Recruiter, it needs to return page BCBI. Otherwise, it returns page BC. My Rule Validates [font=Calibri][color=#000000]if (((Field("Title") == "Account Supervisor") || (Field("Title") == "Senior Account Supervisor")) || (Field("Title") == "Field Recruiter"))[/color][/font] [font=Calibri][color=#000000]{[/color][/font] [font=Calibri][color=#000000]FusionPro.Composition.SetBodyPageUsage("BCBI", true);[/color][/font] [font=Calibri][color=#000000]FusionPro.Composition.SetBodyPageUsage("BC", false);[/color][/font] [font=Calibri][color=#000000]}[/color][/font] [font=Calibri][color=#000000]else[/color][/font] [font=Calibri][color=#000000]{[/color][/font] [font=Calibri][color=#000000]FusionPro.Composition.SetBodyPageUsage("BCBI", false);[/color][/font] [font=Calibri][color=#000000]FusionPro.Composition.SetBodyPageUsage("BC", true);[/color][/font] [font=Calibri][color=#000000]}[/color][/font] But, I get the following error when I compose: Compose Error: OnJobStart, line 1: Error: In Field(), no data source defined or data could not be loaded Job started 18:27:44 - 1352330864. Creator: FusionPro Desktop 7.2P1k Computer Name: STPRESSTRABA Current working folder: D:\Customers\Hospitality Staffing Services\Products\Templates\BC\BCBI Composed Template File: D:\Customers\Hospitality Staffing Services\Products\Templates\BC\BC_BCBI_BusinessCard_Template.pdf Input File: D:\Customers\Hospitality Staffing Services\Products\Templates\BC\bc_bi.txt Composing record #1, input record 1 Composing record #2, input record 2 Composing record #3, input record 3 Composing record #4, input record 4 Composing record #5, input record 5 Composing record #6, input record 6 Composing record #7, input record 7 Composing record #8, input record 8 Job ended 18:27:50 - 1352330870. Don't know if it's related: I also have a graphic rule setup to place the correct background image on the page based upon the Title field. This rule is assigned to the background graphic on pages 2 & 3, which are the two backs of the card. My Rule: switch (Field("Title").toLowerCase()) { case "Account Supervisor".toLowerCase(): return Resource("BCBI_BusinessCard_Back.pdf"); case "Administrative Assistant".toLowerCase(): return Resource("BC_BusinessCard_Back.pdf"); case "Area Manager".toLowerCase(): return Resource("BC_BusinessCard_Back.pdf"); case "Business Development Coordinator".toLowerCase(): return Resource("BC_BusinessCard_Back.pdf"); case "Director of Operations".toLowerCase(): return Resource("BC_BusinessCard_Back.pdf"); case "Field Recruiter".toLowerCase(): return Resource("BCBI_BusinessCard_Back.pdf"); case "President/CEO".toLowerCase(): return Resource("BC_BusinessCard_Back.pdf"); case "Senior Account Executive".toLowerCase(): return Resource("BC_BusinessCard_Back.pdf"); case "Senior Account Supervisor".toLowerCase(): return Resource("BCBI_BusinessCard_Back.pdf"); case "Vice President".toLowerCase(): return Resource("BC_BusinessCard_Back.pdf"); case "Vice President of Operations".toLowerCase(): return Resource("BC_BusinessCard_Back.pdf"); case "eCommerce Systems Manager".toLowerCase(): return Resource("BC_BusinessCard_Back.pdf"); default: return ""; } The composed file is creating 2 outputs for every record: one for each background image & back page (2 or 3). This is the first time I am selecting pages in a template, so I pulled up my post card template that I created during PTI training to see how we did it there and tried to replicate it. I do not understand what I have done wrong. Please help.
×
×
  • Create New...