Jump to content

cwolford

Registered Users - Approved
  • Posts

    6
  • Joined

Converted

  • FusionPro Products
    No

cwolford's Achievements

Rookie

Rookie (2/14)

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

Recent Badges

10

Reputation

  1. Step, I tried your code adds again and it looks like that did the trick! My template was just not refreshing before. The minimum height allowed me to adjust the space between the lines so it works over the lined graphic in the template background. Thanks again!
  2. 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
  3. Hey Step, Thanks for the suggestion. I used the margin adjustment as you can see in my code sample and it gives me the ability to increase the leading between lines, but what I need to do is decrease the default line leading of 120 in order to get these lines closer. I tried setting the minimum row to 10 but it did not move the lines. Any other suggestions? Clint
  4. 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
  5. Dan, You're the man! Very helpful suggestions on both counts! Worked like a champ! Thanks so much! Clint
  6. 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...