Jump to content

MarkJonesEMKT

Registered Users - Approved
  • Posts

    17
  • Joined

Posts posted by MarkJonesEMKT

  1. I have tried in many different ways to make it work using the Imposition tab of the Composition Settings dialogue and I have never managed to get it to work with an imposition. The closest I was ever able to get it cut off half of the cover sheet and replaced it with blank space.

     

    However I did manage to get this working by changing the order of my "if" statements.

     

    Solution:

     

    var stack = FusionPro.Composition.JobOptions["RecordsPerChunk"] / 4;
    var cover = false;
    
    //check first for repeat
    if(FusionPro.Composition.repeatRecordNumber == 2)
    {
       FusionPro.Composition.SetBodyPageUsage("Page1",true);
       FusionPro.Composition.SetBodyPageUsage("Page2",true);
    }
    
    //Insert cover and repeat
    if(cover  = FusionPro.Composition.inputRecordNumber % stack == 1)
    {
       FusionPro.Composition.repeatRecordCount = 2;
       FusionPro.Composition.SetBodyPageUsage("SetSheet", true);
       FusionPro.Composition.SetBodyPageUsage("BSetSheet", true);
    }
    
    //No cover and no repeat
    if(FusionPro.Composition.repeatRecordNumber == 1 && cover == false)
    {
       FusionPro.Composition.SetBodyPageUsage("Page1",true);
       FusionPro.Composition.SetBodyPageUsage("Page2",true);
    }
    

  2. Hello All,

     

    So I have been having some issues with FP Imposer and adding cover sheets to the beginning of the output pdfs. I have this working perfectly without an imposition and at one point it was working with a 2up imposition, but now it is adding blank pages to the document.

     

    Here is what I am doing.

     

    var stack = FusionPro.Composition.JobOptions["RecordsPerChunk"] / 4;
    
    if(cover  = FusionPro.Composition.inputRecordNumber % stack == 1)
    {
       FusionPro.Composition.repeatRecordCount = 2;
       FusionPro.Composition.SetBodyPageUsage("SetSheet", true);
       FusionPro.Composition.SetBodyPageUsage("BSetSheet", true);
    }
    if((FusionPro.Composition.repeatRecordNumber == 1 && cover == false) || FusionPro.Composition.repeatRecordCount == 2)
    {
       FusionPro.Composition.SetBodyPageUsage("Page1",true);
       FusionPro.Composition.SetBodyPageUsage("Page2",true);
    }
    

     

    I am trying to output this 4up duplex on a sheet. The cover sheet will print with a back and repeat the record count. Then the record will repeat and print the front and back of the main page.

     

    This works perfectly, except that the imposition is repeating the cover page (without printing that it is to the log) after 2 records and then it is adding 2 blank pages every page. What might be wrong with this?

     

    Thanks for your time!

  3. The output that I want is a set sheet that will have a design and the stack number (i.e 1, 2, etc) on top of the corresponding stacks. Say I am using stacks of 300 on a 2 up imposition. The first sheet left side will say stack 1, the right side will say stack 2 and the left side will contain records 1-300 in a stack and the rightside will contain records 301-600.

     

    The program that I have now currently does this just fine. I was wondering if it would be possible to not have to hard code the number of stacks that I will be using. So if I wanted to run a 4up imposition, I would not have to change the numbers to 4up in the code. Because my code currently determines if a new stack is beginning, it would be extremely simple if I was able to know how many records where in each stack without having foreknowledge of the imposition. So if somebody were to increase the stack size or change it from a 2 up imposition to a 4 or 6 up imposition, I wouldn't have to modify any code to get the set sheets in the right place.

  4. Hello All,

     

    I am trying to create a bunch of templates that I can have others at my company pull in and not have to edit any actual code. I don't actually know if this is possible or not, but what I would like to do is be able to read the imposition stack size from OnRecordStart.

     

    I have been having some issues getting the imposition settings to work with a slipsheet the way I want. We impose in stacks first and then across or wherever else. I know that I can get the chunk size from the FP Globals and I have been using that to name my files, but I was hoping that I could get the stack size for the imposition as well. Here is what I have so far for a 2 Up imposition.

     

    In OnRecordCount:

    var chunkSize = FusionPro.Composition.JobOptions["RecordsPerChunk"];
    var stack= chunkSize/2 ;
    if(cover = FusionPro.Composition.inputRecordNumber % stack == 1)
       FusionPro.Composition.repeatRecordCount = 2;
    
    var page = (cover && FusionPro.Composition.repeatRecordNumber == 1) ? 'SetSheet' : 'Page1';
    FusionPro.Composition.SetBodyPageUsage(page,true);
    }

    and in a rule that will label which stack is which

     

    var stackSize = FusionPro.Composition.JobOptions["RecordsPerChunk"] / 2;
    var beginstack = FusionPro.Composition.inputRecordNumber;
    var setnumb = 0;
    setnumb = Math.ceil(beginstack/stackSize);
    return "Set # " + setnumb;

     

    What I would like to be able to do is replace the variable stack with the count of the imposition. That way I wouldn't have to tailor the rule based on the composition and I could simply create 1 template for each size of paper rather than a template for the size of paper and number of stacks that will be printed. Is there a way to do this?

  5. Hello All,

     

    I want to be able to change how a line or paragraph is being justified based on the value of a specific field. I'm pretty new to both FP and JavaScript so I'm still figuring out syntax for these things. Here is what I am trying to do.

     

    if(Field("Name") != "")
         return "Centered Text" + Field("Name");
    return "Left Justified Text" + Field("Name");
    

     

    I thought I may be able to use the "<span>" tags and I looked through the reference guide, but I didn't see anything on this specifically. I really appreciate any help offered.

  6. What is the purpose of the "boolflag" variable? Are you including that as some sort of exit status for the function? If so, that's not necessary. If you're using it to determine whether the job is being chunked or not, as I said in my other post, you can determine that based on the "chunkSize" variable.

     

    The boolflag is an external "global variable," I used it so that my "output2" naming convention would only get called once, and would not get called when I was using the "output1" naming convention. I could have used "chunkSize", but then I would have had to check another flag anyway which is why I chose not to handle it like that.

     

    The correct way to access the input file's name is FusionPro.Composition.inputFileName. FusionPro.inputFileName will not return anything and your "outputName2" will end in a trailing underscore (_) as a result. Using the "building blocks" will allow you to access the properties of the FusionPro object as well as give a description. From the Building Blocks, click Objects > FusionPro (Global) > Composition > Input and Output > inputFileName. Double-clicking on the "inputFileName" will insert it into your rule editor.

     

    This is actually what I thought too, however "FusionPro.Composition.inputFileName" returns null while "FusionPro.inputFileName" returns the correct naming convention. I actually used the building blocks to double check and it added it as "FusionPro.inputFileName"

     

    To handle that scenario, you'd have to force FusionPro to preprocess the job by putting this in an "OnJobStart" callback: ....

     

    Thank you for this! I was actually looking into how I could accomplish this.

  7. This is what I had been doing. I wanted to make sure that the PDF name was not dependent on the job title so I had two different "name" statements that I separated based on the existence of "RecordsPerChunk".

     

    var jobtitle = "Job_#_";
    var chunkSize = FusionPro.Composition.JobOptions["RecordsPerChunk"];
    if(FusionPro.Composition.inputRecordNumber % chunkSize == 1)
    {
       var beginfile = FusionPro.Composition.inputRecordNumber;
       var outputName1 = jobtitle + Field("Filename") + "_" + beginfile + "_" + (beginfile + (chunkSize-1));
       FusionPro.Composition.OpenNewOutputFile(outputName1 + "." + FusionPro.Composition.outputFormatExtension);
       if(boolflag == 0)
       {
           boolflag = 1;
       }
    }
    if(boolflag == 0)
    {
    var InputType = "";
    if (FusionPro.inputFileName.indexOf("_ALL") > -1)
        InputType = "ALL";    
    if (FusionPro.inputFileName.indexOf("_LS") > -1)
       InputType = "LS";
    var outputName2 = jobtitle + Field("Filename") + "_" + InputType; 
    FusionPro.Composition.OpenNewOutputFile(outputName2 + "." + FusionPro.Composition.outputFormatExtension);
    boolflag = 1;
    }
    
    

     

    If the file was supposed to split on multiple outputs I wanted to receive the file name

     

    Job_#_FILENAME_firstRecord_lastRecord.pdf

     

    and if it wasn't I wanted the file name to be

     

    Job_#_FILENAME_InputFile.pdf

     

    What was happening last night is when I went to compose with the multiple file selection checked and a set chunk size, it was outputting the first PDF with the second filename option, and the rest with the default

    JobTitle-Output#.pdf

     

    However, when I composed this morning, it worked like it was supposed to. I never figured out why it wasn't working last night, but I thought my code looked right. It is working now though, thank you for your help!

  8. Note also that multiple file output (i.e. "chunking") can also be accomplished by calling FusionPro.Composition.OpenNewOutputFile in OnRecordStart, even if the "Output to multiple files" box is not checked. This feature is called "arbitrary chunking." If you use that, then your rule can decide how many records are output to each file, instead of needing to query the CFG options to find out. If you want to start a new file for every 450 records, your OnRecordStart rule could do something like this:

    if (CurrentRecordNumber() % 450 == 1)
    {
       var new_name = Field("Filename") + "_" + Field("Presort Se") + "_" + 450 + "." + FusionPro.Composition.outputFormatExtension;
       FusionPro.Composition.OpenNewOutputFile(new_name);
    }

     

     

    I was going to try something like this, but I am trying to prepare templates for people who won't be able to code and I want them to be able to use the CFG and not realize what is going on in the background. Thanks for the help!

  9. Hey All,

     

    I am still familiarizing myself with all of the capabilities of FusionPro as well as the FP global variables. I am trying to create a rule that will allow me to check the composition settings and check whether or not the "Output to Multiple Files" box is checked. If it is I want to know how many records are output to each file.

     

    Here is what I have so far.

     

    begin_data=Field("Presort Se");
    records_per_file = 450; // Ideally this would be a rule that checked if it needed multiple files and set this number to the record count per file
    records_per_file=parseInt(begin_data) + records_per_file - 1;
    // Conversion to string
    end_data= records_per_file.toString();
    
    // Creation of name 
    new_name="Field("Filename") + "_" +  begin_data + "_" + end_data + ".pdf"; 
    // CHANGE JOB# NAME AND SECTION
    // Sets name of PDF 
    FusionPro.Composition.outputFileName= new_name;
    return 0; 

     

    I looked through all of the building blocks and I saw an object called "Job Options" I wrote a program that showed me all of the fields in that object, but I didn't see anything helpful in there. Is there an object that I am missing? Thanks for any help :)

  10. I have attached two sample screenshots of what I'm trying to do.

     

    http://forums.pti.com/data:image/png;base64,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

    Example.jpg.0c94d958e3729f995c2c1aa4bd95ca60.jpg

    Global.png.65bb3fca88153ac20a2e449f9d982d24.png

  11. Hello All,

     

    I am having an issue adjusting paragraph line spacing between multiple text boxes. I have a variety of text boxes that need have their text spaced individually from each other, however, every time I change the settings in one text box, it changes the settings for all of the text boxes. Is there anyway to force the paragraph settings to be static for each box?

×
×
  • Create New...