Jump to content

MikeA

Registered Users - Approved
  • Posts

    6
  • Joined

Converted

  • FusionPro Products
    No

MikeA'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. Just to clear this one out - it looks like the problem was with the file path. It was a long path, but I think I've used longer. It had spaces in the folder and file names but I definitely have used those before. So I don't know if it was a forbidden combination of characters in the path or what, but moving the project to a folder much closer to the root got it going. Thanks for looking this one over, and maybe someone can get use of my experience.
  2. My apologies. I have Windows 7 Pro 64bit SP1, Acrobat Pro 10.1.16. Other jobs, including the tutorials, do compose to PDF without issues. At least knowing it composes properly on another installation narrows it down to just my installation/configuration. I'm going to create a new base PDF document. Maybe there is an issue with the one I'm using. The MSG file contains: Job started 12:27:24 - 1506446844. Creator: FusionPro(TM) VDP Creator 10.0.3 Computer Name: PC-MIKEWORK2 Current working folder: C:\Users\mikework\Documents\***xx ******\2017\*********xx 1\ClientOutput Temporary files folder: C:\Users\mikework\AppData\Local\Temp\ Template File: C:\Users\mikework\Documents***xx ******\2017\*********xx 1\ClientOutput\ClientOutput2.pdf Input File: C:\Users\mikework\Documents\***xx ******\2017\*********xx 1\ClientOutput\input_buyers.txt Composing record #1, input record 1 Job ended 12:27:24 - 1506446844. Total Job Time: Note - the "******" in the MSG is just to protect client privacy. The actual folder name is a plain name. Mike
  3. Thanks for the reply. The check box to suppress static PDF background is unchecked. The FP PDF itself is a blank letter sized document. And yes, when I look at the composed PDF there is nothing on the page but some static text I placed in the box to see if anything would print at all. The rule validates in the rules editor, the preview shows the output of the rule. But it doesn't appear in the composed PDF. Strangest thing. I'll attach the FP PDF and the data files if you want to see if it will compose on your system. Thanks, Mike TestJob.zip
  4. Hi all, I'm using FP Creator 10.0.3 to create PDF output. I have a rule which returns a bunch of tagged text using an external data file. When I preview the output all of the information I need to print is visible. When I compose the document none of the information is printed. Has anyone had a similar situation? I've used this code in other documents and it works fine. I've boiled a test FP document down to just the essentials and still can't get it to produce a print file. There has to be something simple I'm missing. Thanks for any help! Mike
  5. Hi Dan, Thanks for the workaround. It is a bit more elegant than the one I implemented before the reply. I found that adding a new line in the variable text editor just above the table and setting its leading to Auto - 0 lines (instead of 1 or any other value) resulted in the expected behavior from the VAlign assignment. Maybe that will help the dev team isolate the issue further. Did you reproduce the issue in version 9.1? I will be upgrading to version 9.1 as soon as its feasible. Maybe that is squashed in the latest version. Thanks for the help! Mike
  6. Hello all, I'm hoping someone can point me in the right direction. Like the previous poster, I'm having an issue with the VAlign property of FPTable. I have a rule in which I create a table and set it to align cell content to center, both horizontally and vertically. This works if I call the rule as the first item in a text box. But if there is anything at all, even just a carriage return, above the rule, the content of the cells floats to the top. Everything else looks to be following the rule. Here is the rule: new FPTable; var myTable = new FPTable; myTable.AddColumns(16000, 6000, 6000, 6000, 6000, 6000); // Add the top row var topRow = myTable.AddRow(); topRow.Cells[0].HAlign = "Center"; topRow.Cells[0].VAlign = "Middle"; topRow.Cells[0].SetBorders("Thin", "Black", "Top", "Bottom", "Right", "Left"); topRow.Cells[0].Font="Times New Roman"; topRow.Cells[0].PointSize=11; topRow.Cells[0].Bold="On"; topRow.CopyCells(0,1,2,3,4,5); topRow.SetContents("Your Monthly Amount", "$100", "$250", "$500", "$1,000", "$5,000"); // Add the bottom row var bottomRow = myTable.AddRow(); bottomRow.Cells[0].SetBorders("Thin", "Black", "Top", "Bottom", "Right", "Left"); bottomRow.Cells[0].ShadeColor="Black"; bottomRow.Cells[0].ShadePct=15; bottomRow.Cells[0].Font="Times New Roman"; bottomRow.Cells[0].PointSize=11; bottomRow.Cells[0].Bold="On"; bottomRow.CopyCells(0,1,2,3,4,5); bottomRow.SetContents("Our Offer To You", "100", "250", "500", "1000", "5000"); // Center the table in the text box return myTable.MakeTags().replace(/^\<table/, "<table alignment=center"); Using FP VDP Creator 8.2.7. I've attached a sample job for perusal. I cannot seem to figure this one out. Thanks! LetterP.zip
×
×
  • Create New...