Jump to content

dreimer

Registered Users - Approved
  • Posts

    524
  • Joined

Posts posted by dreimer

  1. Try this, keep in mind this is for the IMpB barcode but it may work. You don't seem to know the construct of the Certified barcode so it is tough to help. This adds the FNC1

     

    Create this rule called something like "ForBarcodeRule"

    var s = Field("YourData");
    return s.replace(/(\d{3})(\d{5})(\d{2})/, '($1)$2($3)');

     

    Then create a rule for the barcode itself.

     

    return '<f name = "IDAutomationC128L">' + NormalizeEntities(MakeEAN128Barcode(Rule("ForBarcodeRule")));

    IMpB Sample.pdf

  2. Hi Dan -

     

    I talked with Alex in support. I think he and I are clear on the problem.

     

    Perhaps I'm not making myself understood in my comments here. In all past versions of Fusion I have been able to check Page Info and shift the resulting tag at the bottom of the sheet up so that it's not in the Indigo gripper area and prints properly on the press sheet. I've done it for years. But with v10 it's now locked at 9pt and can't be changed.

     

    See attached screen grab.

     

    Oh, I sure that is fixed before I need to upgrade, I change that all the time. For the reason you mentioned about the imposition template pages. That is a lot of extra template building if you can't use the regular slug with the mark offset.

  3. I am trying to format a line of text that uses different superscript settings from other text boxes using the global settings in my template. I tried to pick up a different example but am having trouble getting it to work. Here is my code, I am trying to place a data field in the spot where it says "MY FIELD" but I can't get the syntax correct. My field name is "Adult Cut Cents"

     

    return "<p br=false superoffset=30 superratio=70><superscript>$</superscript>" + Field("Adult Cut Dollar") + "<p br=false superoffset=30 superratio=70><superscript>MY FIELD</superscript>"

     

    Any help would be greatly appreciated.

  4. I get it and you can do that as I stated, create each letter version as it's own page in your Fusion Pro template and have a field in the data trigger which page to use. The pages in the template will set to unused.

     

    Fusion Pro will then switch the page needed for each record just as XMPie would switch layers.

  5. Build your template with a page for each letter version and name it according to a data field. Then use an OnRecordStart rule that the data specifies which named page to use such as:

     

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

  6. If you are doing just one copy of each two pager (Front and Back) not varying quantities, you could try using the following rule in OnJobStart callback.

     

    FusionPro.Composition.impositionSheetBackgroundFrontPage = "Imposition";
    FusionPro.Composition.impositionSheetBackgroundBackPage = "Imposition";

     

    Just add your Template page named "Imposition" at the end of your 1000 page PDF and set your datasource to none and apply your imposition (fpi) file on composition. I do this all the time.

     

    I should add, that I do this when doing multiple-up of each set. But should work if you are doing just a one-up imposition say 17X11 on a 19X13 sheet for example.

  7. I can't get into too many details, but I can tell you that an upcoming version of FusionPro Server will allow you to do exactly this: compose output from completely different FusionPro templates, from a single pre-sorted data file, and impose the composed records in the sorted order in the output, without having to write code to suppress or move frames or pages.

     

    That is quite interesting. Look forward to hear more about this!

×
×
  • Create New...