Jump to content

kklansky

Registered Users - Approved
  • Posts

    5
  • Joined

Converted

  • FusionPro Products
    No

kklansky's Achievements

Rookie

Rookie (2/14)

  • First Post Rare
  • Week One Done
  • One Month Later
  • One Year In
  • Conversation Starter Rare

Recent Badges

10

Reputation

  1. Thank you Step and Dan - I think I have this figured out. I am using the following for OnRecordStart: if ( (Field("Frontgraphic").toLowerCase()) == "auton" ) { FusionPro.Composition.SetBodyPageUsage("Front Page",true); FusionPro.Composition.SetBodyPageUsage("Back Page",true); FusionPro.Composition.SetBodyPageUsage("GC Front",false); FusionPro.Composition.SetBodyPageUsage("GC Back",false); } [/color] else { FusionPro.Composition.SetBodyPageUsage("Front Page",false); FusionPro.Composition.SetBodyPageUsage("Back Page",false); FusionPro.Composition.SetBodyPageUsage("GC Front",true); FusionPro.Composition.SetBodyPageUsage("GC Back",true); } return "" Then for the Letter page I am using this: if ( (Field("Frontgraphic").toLowerCase()) == "auton" ) return Resource("AutoN.pdf"); else return NullResource(); Then for the Statement Page I am using this: if ( (Field("Frontgraphic").toLowerCase()) == "auton" ) return NullResource(); else return Resource((Field("Frontgraphic").toLowerCase()) + ".pdf"); I have similar javascripts for the back page of the Statement and Letter pages. Thank you for your guidance and help with this! Much appreciated!
  2. Hi Dan - thank you for your reply. I did what you suggested and am still a little stumped. I created an OnRecordStart callback rule - see below FusionPro.Composition.SetBodyPageUsage("CoverPage", Field("Frontgraphic") == "auton"); FusionPro.Composition.SetBodyPageUsage("GCFront", Field("Frontgraphic") == "091404-1"); FusionPro.Composition.SetBodyPageUsage("GCFront", Field("Frontgraphic") == "091405-1"); I skinnied down my db file to only include three records. When I compose this...the middle one "091404-1 does not print. If I increase the amount of records...the first one "auton" prints, and the last one...call it "091410-1" prints...but the 2-9 (the middle records) do not print. I read the manual you suggested and tried to create the rule they have as an example...but get the following error: " OnRecordStart, line 1: SyntaxError: missing ( before condition " Any chance I can collect this template and send it to you so you can have a look? Thanks in advance for your time.
  3. Hello - I created a 3 Page (two sheet duplex) FP Creator Template. The first page (sheet) is Letter size paper (single-sided) and the second page (sheet) is Statement size paper (duplex). Based on data in a field name (Frontgraphic - example below), I want to print a different image file. I am using a switch rule to call the image file based on the data. My issue is that I print too many pages. Because I have a three page Template...for every row of data, the output is three pages. I am looking for it to print one page, based on data. If the data is "auton" I want to print the Letter size page. If the data is "091404-1", I want to print the Statement size page. Can anyone tell me what I might be doing wrong? Or, what I might need to do to provide the output I am looking for? Should I not have three pages in my template? Thanks in advance for your help. Kevin Klansky FP Novice Frontgraphicauton091404-1091405-1091406-1auton091403-1091401-1091402-1091400-1auton100426-1100425-1100429-1
  4. Hi Dan - thank you so much for your reply. As you suggested, I added an unused body page and invoked it as a slip sheet from the Imposition tab in the Composition Settings. I created the text box on that page...but still not sure how to create that rule which sets the ticket numbers for the range. Would you be able to give me an example of how to create that simple rule? Would that be an empty rule with a javascript? Or a drag and drop rule? I am new to FP and am trying to get the hang of putting the rules in place. Thanks so much for your help.
  5. Hello All - I am trying to figure out a way to run a variable ticket job with special inserts. The variable tickets are fairly straight forward... (tickets are 2x5") with some basic numbering...let's say 1-1000. The tickets are imposed onto 8.5x11 sheets...but not necessarily imposed as a cut and stack. Here's the special part...I'd like the first 8 sheets (set) with tickets 1-125, the second 8 sheets (set) with ticket numbers 126-250, third set of 8 sheets with ticket numbers 250-375 and so on. In between each set, I'd like to pull an insert sheet and put on the insert sheet the ticket numbers in the set. So, for the first set, pull an insert sheet and on the sheet write "tickets 1-125" (or something of that nature...it could just be "1-125"), then print the first 8 sheets of tickets 1-125. Then pull another insert sheet and on it write, "tickets 125-250" and then print the sheets of tickets 125-250 etc. Does this make sense? The variable tickets I can do...it's pulling inserts and then on those inserts writing the ticket numbers on them....that's the tricky part I am having trouble figuring out. Would anyone know how I might write a javascript or something to do this sort of job? Any and all advice would be appreciated. Thanks!
×
×
  • Create New...