Jump to content

tou

Registered Users - Approved
  • Posts

    112
  • Joined

Posts posted by tou

  1. provided that there are 2 page PDFs create for each REP, create 2 rules to use for 2 page template:

     

    1. front page

    2. back page

     

    front page rule:

    Pic = CreateResource("//[b][color="Green"]YOUR VNC PATH[/color][/b]/"+[b][color="Purple"]YourRepField[/color][/b]+".pdf", "graphic", true);
    Pic.pagenumber = [b][color="Red"]1[/color][/b];
    return Pic;

     

    back page rule:

    Pic = CreateResource("//[b][color="Green"]YOUR VNC PATH[/color][/b]/"+[b][color="Purple"]YourRepField[/color][/b]+".pdf", "graphic", true);
    Pic.pagenumber = [b][color="red"]2[/color][/b];
    return Pic;

     

    these are graphic rules, so you'll have to use graphic object and use the graphic rules accordingly. In most cases if you have bleeds and crop marks already, depending on the PDFs bleed settings and gutters needed to nUp the files, you may need to delete pre-cropped marks and use impositioning's crop features (especially if you are doing 0.25" crop marks).

     

    When uploading to server to compose, make sure server has access rights to VNC location otherwise you'll have blank backgrounds. If composing locally does not take a long time, you shouldn't have to worry about it (but it will lock your acrobat until it's done composing).

     

    Over time, building off of blank PDFs with re-usable coding and settings (colors, etc) will save you time. If you have a different page size you can always FP insert a different page size and resize background sizes copied to the new template page.

     

    Good luck and happy findings.

  2. How do I nUp a static 664 page pdf?

     

    I generated a PDF from our mailing software and just want to use FP to 9-up it onto 12x18 sheet.

     

    I tried it and it gave me 664 pages completed at 12x18 with my 6x4 labe in the upper left hand corner.....I should get 74 pages.....(664/9~74 pages)....

     

    Sorry if I missed it in other posts...

  3. OK that appears to work, the only thing I'm missing is the common variable text boxes that were on the common back.

     

    Thanks, I can make sense of this, I'll just have to duplicate the common variables to every layout. I just thought there was a way to merge different layouts with the back.

     

    Thanks, this will get it done.

     

    Whoops sorry about that. I remember reading something about reusable resources, but I'm not sure how to do that.

     

    Good luck and I'm sure there will be better suggestions soon. :p

  4. I uploaded the document.

    The first two pages of the pdf are front and back.

    The remaining pages are the layouts that have to combine with the back,

    which has vd on it also.

    So, page 2 has to merge with the appropriate layout.

     

    I'm not a FP master, but I'd pasted the common BACK to the Layouts and created an OnRecordStart rule:

    FusionPro.Composition.SetBodyPageUsage(Field("BackLayout"), true);

     

    I also noticed that Layout4 was missing the "t" before the 4 so had to edit the data. Set all Back Pages to "unused" and data driven value will set pages to use when called.

    TestUpdated.zip

  5. If anyone has a chance to look over my pdf example I can answer ant questions if you don't understand.

     

    I have to use the front page (P1) of the template for each record. The various backs need to be called specifically as needed.

     

    What have you got so far. Can you post on here?

     

    1 front and 12 backs?

     

    1 front and 1 back?

     

    etc........

     

    Based off of your PDF you got 1 common front and variably different backs. Lots/minimal variables on front and/or back?

     

    What does your OnRecordStart rule look like now? If you are doing graphic rules, what do they look like?

     

    Maybe a sample of the data (sample a sample sensitive parts - name and address) leaving the pages fields in tact can steer us in a direction?

  6. Either create 24 pages all set to "not used", then data is coded to set page to "use" accordingly (assuming pages 1-12 is fronts and 13-24 is backs).

    using following code in OnRecordStart:

    FusionPro.Composition.SetBodyPageUsage("yourPageName", true);

     

    If VDP is the same like a postcard and just swapping artwork, create 2 page template, then image call the fronts and backs accordingly based on data.

    creating 2 rules and calling images dynamically:

    Pic = CreateResource("//youPath/"+yourDataCalledArtwork+".pdf", "graphic", true);
    Pic.pagenumber = yourDataCalledArtworkPageNumber;
    return Pic;

     

    Creating the 24 pages allows more WYSIWYG feel of things, whereas 2 pages is a little more cryptic.

     

    I'm sure there are tons of resources on here that have touched on this and may prove to be better. Stitching it up together is the key.

  7. I have another question on the letter project.

    How would you handle the project if there was a variable within the letter text.

    Let say the in the letter there was a name that varied in length causing the paragraph to change size and flow.

    it depends...maybe like the UMD sample we were looking at, or compose the entire letter.

     

    what have you got programmed so far?

  8. OK, I'm going to figure out a way to configure an explanation on this project.

    But, let me see if I understand something you said.

    So, lets say I have a text dos for 3 up 4up 5up etc, I could include the dotted line layout and coupon layout and trigger to call the different text boxes?

     

    something like the attached sample might work.....I'm sure there is a simpler way of doing things.

     

    happy findings....

    coupons_template.zip

    coupons-test-data-Output.pdf

    coupons.pdf

  9. Without knowing the full scale of this setup...the visual way would be to setup as many textbox as you need and use coding in OnRecordStart to suppress unneeded textbox...refer to how to suppress elements in previous chats here.

     

    You can also try table programming too, but I'm not that well verse in scripting tables.

     

    Same logic would apply for the coupons also.

     

    Are you call look-up information or are they in the data already?

     

    Casino business is good, but complex and sometimes messy....QC buddy.... :)

  10. This stuff is pretty amazing.

     

    I have another project I would really like your input on.

     

    It's a bit more of a puzzle and will require specific text behavior.

     

    I can try to get some info together for you to take a look at if you don't mind.

     

    Thanks again for your help with this.

    I'm not a FusionPro pro, but I'm sure Dan and Step will respond if it's beyond everyone else's experience. :)

  11. Can you elaborate a bit on this?

     

    Where do I begin with something like this?

     

    Attached is what I download and quickly programmed. Looks like your letters lines up pretty well so didn't have to suppress multiple text boxes.

     

    I've also include the modified PDF less the VDP stuff for you to put somewhere and update letterFront and letterBack rules to the right location. Calling PDFs directly from a network location means FusionPro needs to have access to it if you are compiling server wise...otherwise load them in as resources and change coding to call it.

     

    Good luck.

     

    p.s. I didn't do the address block part....

    TEMPLATE-UMD.zip

    TEST-DATA-Output.pdf

  12. You can do what @dreimer suggest. However while composing the job all pages will be processed, then not used. The advantage is you see all the pages and can manually make changes more directly.

     

    Given that the ask amounts doesn't wrap your first paragraphs, I'd setup 3 PDFs less the variables portion of the letter and variably call the PDFs via Graphic Rule and setup the text box accordingly. In OnRecordStart rule, you can then suppress the text box you don't want to show.

     

    2 page setup should do the trick.

     

    here's a snippet of a setup I have that controls two different positions of address blocks and indicias due to design of the piece. You have to name your elements according. In your case you will possibly have 3 sets of objects.

     

    var VariableName = FindTextFrame("addHigh")
    var VariableName2 = FindTextFrame("addLow")
    var VariableName3 = FindTextFrame("indiciaHigh")
    var VariableName4 = FindTextFrame("indiciaLow")
    var VariableName5 = FindTextFrame("addHigh2")
    var VariableName6 = FindTextFrame("addLow2")
    
    var VariableName7 = FindTextFrame("SAL1")
    var VariableName8 = FindTextFrame("SAL2")
    
    if (Field("user05")=="5") {
       VariableName.suppress = true
       VariableName2.suppress = false
       VariableName3.suppress = true
       VariableName4.suppress = false
       VariableName5.suppress = true
       VariableName6.suppress = false
    } else {
       VariableName.suppress = false
       VariableName2.suppress = true
       VariableName3.suppress = false
       VariableName4.suppress = true
       VariableName5.suppress = false
       VariableName6.suppress = true
    }

  13. I have to match the attributes of the letter as it was set up in InDesign.

    Thats my problem, I can't have natural breaks, it needs to look exactly like the client created it.

    Do you understand what I mean?

     

    Can you provide a screen shot? A picture can mean 1000 words.

     

    If you are to retain the exact position, then sometimes using the static text as a graphic (PDF) is a good option.

     

    Again, without knowing what we're looking at. It's hard to suggest. When you mention letter with variables, I'm thinking a letter with variables in the middle of a paragraph and not form type, so I can't imagine no wrapping if its a formal/conventional letter.

     

    Good luck and hope to see some screen shots, if you may.

     

    Thanks

  14. This works great!

    One more issue: What's the best way to keep the phone numbers centered between the bottom line and address? I'm using the paragraph formatting in the variable text editor but it's not centering it correctly.

    Thanks for all your help!!! JP

     

    I would imagine you create another text box and have it center vertically? Or you can have one big text box and have everything collapse blank lines when a variable is empty?

     

    Another suggestion is to format the numbers after the colon to start at the same spot....but that's just for looks of course.

  15. I'd parsed your business card to have only the top line for one graphic resource. Parsed the business card to have only the bottom line plus the graphic logo as another resource.

     

    I would use something like pitstop to delete components you don't need to make the two images above.

     

    Once you import the graphics as resources, you can create two separate rules to return the graphic resource (as a tagged text). This way you can then insert it into the textbox.

     

    Hard to explain, so here's the collect job....attached...

    golf template.zip

×
×
  • Create New...