Jump to content

cwolford

Registered Users - Approved
  • Posts

    6
  • Joined

Posts posted by cwolford

  1. Step,

     

    I commented out the margin because it allowed me to increase the distance between the lines but not decrease. I am trying to decrease the space between the lines. I stripped out all of the extra code and attached the template.

     

    I did try adjusting the leading in the text dialogue but this does not seems to affect the text within a table.

     

    Thanks again for your help!

    Clint

    Invoice Sample 4 Clint Wolford.zip

  2. Hello,

    I am using FusionPro Creator 10.0.16 on Windows. I have created a table and I need to reduce the leading between lines to the lines fit a static table graphic in my template. I've tried line-height and magnify but I must be getting the syntax wrong.

     

    Here is the rule I'm using to build my table.

     

    var table = new FPTable();

    table.AddColumns(8500,38500,7200);

     

    var data = FusionPro.GetMultiLineRecords();

    for (var rec = 1; rec <= data.recordCount; rec++)

    {

    function ExField(str)

    { return TaggedTextFromRaw(data.GetFieldValue(rec, str)); }

     

     

    var content = ["DATE","DESCRIPTION","OPEN-AMT"].map(ExField);

     

    var row = table.AddRow();

     

    row.SetContents.apply(row, content);

     

    // row.Cells[0].Margins = row.Cells[1].Margins = { Top:0, Bottom:0, Left:0, Right:0 };

     

    }

     

     

    return table.MakeTags();

     

    Thanks for any suggestions!

    Clint

  3. Hello,

    I am running Fusion Pro Creator 10.0.16 on a MAC. I have a .csv file with multiple lines per record and I am calling a new record every time the statement number changes.

     

    I am having trouble getting data to show from the last line in the record from a field called AMOUNT-DUE. This field only has data in the last line of each record as a value showing all amount due on the invoice. However, I am seeing the date field from the last line in the record in my table.

     

    What I am trying to do is suppress the last line in the table, but show the AMOUNT-DUE in a separate text frame at the bottom of the invoice.

     

    Thanks in advance for your help!

    Clint

×
×
  • Create New...