Jump to content

JeremyT

Registered Users - Approved
  • Posts

    88
  • Joined

Everything posted by JeremyT

  1. I am chunking it in the composition dialog so I used the code from above. Thanks! The job I am working on has 5076 records so the last pdf output is labelled 5001-5250. Is there a way to have it labelled by the last record in the output pdf? Jeremy
  2. I have a large file with 5000 records that I would like to have chunked into 250 records per output pdf. What code do I need so that when outputting files it adds the starting and ending record of that chunk on the output pdf. For example: Output Job 1-250.pdf Output Job 251-500.pdf Output Job 501-750.pdf Thanks, Jeremy
  3. Fonts size will need to decrease as more addresses are added.
  4. I am working on calendar imprints. My data file gives me the list of branches that ordered the calendar imprint. The branch address is returned from an external data file. Currently I have it set up in FusionPro to do the branches that have only 1 address. Can I set up a merge in FusionPro for branches that have multiple addresses on the same imprint? There can be from 1 to 12 address total. Would creating a table work for this? Thanks, Jeremy Wall Calendar Imprint Detail Report2.txt
  5. New wrinkle - I've added 2 new pages "-sig" and "-sigTS". I'd like to have "G2", "G2NF", and "-BC" output to one folder and "-sig" and "-sigTS" output to a different folder. Can that be done? I eliminated the code that only output records if "Photo" field had "Y" in it. Now, all records get output. Thanks, Jeremy
  6. I am working on a job that has 4 versions of a newsletter each week. I am able output so that each version gets it own pdf output labeled based on "IssueID" field - Issue 1.pdf, Issue 2.pdf, Issue 3.pdf, Issue SE.pdf. For this merge I only want Issue 1.pdf output. Currently it puts all versions in Issue 1.pdf I've done other merges where the output file is renamed, but this is a little different again. Eventually, I will need to have it output other versions, too i.e. Issue 1 and Issue 2, but not Issue 3 or Issue SE. This is what I have in a OnRecordStart: var DateShort = FormatDate(Field("Date"), "m-dd-yy") if (FieldChanged("Issueid") && Field("Issueid")=="I-1") { var outputName = DateShort + " Issue " + Field("Issueid") +" - Merge." + FusionPro.Composition.outputFormatExtension; FusionPro.Composition.OpenNewOutputFile(outputName); Print("Changing to output file: " + outputName); } Thanks, Jeremy
  7. I get the same error using the Logo.eps. I also tried using the eps files that came with the cell phone tutorial. Jeremy
  8. I came here looking to see if others have had the same problem and what they found for solutions. What other information can I provide? I've contacted support about this issue and haven't found a resolution. It was suggested to edit the Distiller job options file. But I'm unsure of what to change. I'm having this problem on two computers. Same software setup on both.
  9. In the .msg file I get the following: "Graphic is not found or is not processed properly: Page." I also get .log file of the eps from when FP tries to convert it to PDF. Log file is empty - Zero bytes. I am now using Acrobat 10.1.9, FP 8.2.7, MacOS 10.7.5. I'll update my signature with the current Acrobat version. I contacted tech support and they recommended a reinstall of FP-same results. I also made sure the ICC profile was in the correct spot. Lastly, they suggested editing the EPSConvert.joboptions file, but I am unsure of what needs to be adjusted.
  10. Has anyone else had this problem lately? EPS files won't work with FusionPro when previewing or composing?
  11. Dan, I've found a new wrinkle to this merge. This merge is only for agents that don't need a photo. If they have a photo the merge is done with InDesign. There is a field named "Photo". If the Photo field has a "Y" then it doesn't produce a pdf, which is what I want. The problem is when there is a "Y" in the first record, FusionPro gives me the 1096 error and doesn't go any further. If there is a"Y" past record 1 it works as expected. if (Field("Photo") != "Y" ) {var formNames = [ "G2", "G2NF", "-BC", ]; FusionPro.Composition.repeatRecordCount = formNames.length; var FormToUse = formNames[FusionPro.Composition.repeatRecordNumber - 1]; // Set all body pages to be unused initially in the Page Usage dialog. FusionPro.Composition.SetBodyPageUsage(FormToUse, true); var outputName = Field("Agent_Code") + FormToUse + "." + FusionPro.Composition.outputFormatExtension; FusionPro.Composition.OpenNewOutputFile(outputName); Print("Changing to output file: " + outputName);}Why does it stop merging if record 1 has "Y"? Thanks, Jeremy
  12. Using a EPS in a graphic rule works in a graphic frame when composing but it does not show a preview. if ((Field("2012 Claims Total") || Field("2013 Claims Total")) != '$0.00 ') return CreateResource("//Users/Desktop/Projects/Mailing/Merge Links/Claims Chart Misc Text.eps"); else return NullResource()But the EPS does not work when used as an inline graphic. return '<graphic file="/Users/Desktop/Projects/Mailing/Merge Links/Claims Chart Misc Text.eps">'Should I contact Tech Support? Thanks, Jeremy
  13. Dan, I used an EPS in a different rule if ((Field("2012 Claims Total") || Field("2013 Claims Total")) != '$0.00 ') return CreateResource("//Users/Desktop/Projects/Fee Mailing/Merge Links/Claims Chart Misc Text.eps"); else return NullResource()It did not preview but worked when I composed. Jeremy
  14. Dan, Any further ideas on this? Jeremy
  15. There is a file called "Page 3 bar shorter v8-d72.pdf.log" that was created when I previewed the job. It's empty though. Also a file called "Page 3 bar shorter v8.pdf.log" that was created during composition that is blank. I've attached the eps in a zip file. I have 3 other EPS files that I can't get to work. Page 3 bar shorter v8.eps.zip
  16. I am trying to use an Illustrator EPS as an inline graphic. Looking at the TagRefGuide.pdf supplied with FusionPro it says EPS graphics can be used. When previewing the EPS graphic does not show up. When composing the EPS graphic does not show up and it gives me an error in the error log: Graphic is not found or is not processed properly: /Users/Desktop/Projects/Fee Mailing/Merge Links/Page 3 bar shorter v8.pdf Check for file existence and that it is of the proper format. PDF crop error: This file cannot be found. I've tried saving in all the different Illustrator versions from 8 to CS6 - none work. My rule is written like: return '<graphic file="/Users/Desktop/Projects/Mailing/Merge Links/Page 3 bar shorter v8.eps">'Saving as a pdf works, but I'd prefer to use EPS files since its one less step. Thanks, Jeremy
  17. OR || produces the results needed. Thanks for the help!
  18. I need it to not show the graph if both 2012 and 2013 claims are $0.00, so using OR || wouldn't work.
  19. I am working on a merge where a chart picture is inserted that shows claims from 2012 and 2013. If there are no claims I don't want the empty chart to show up. Originally I wrote my rule so that if the 2012 and 2013 claims totals did not equal '$0.00 ' it would insert a picture. Unfortunately, it did not add charts that only had claims in 2012. So, if 2013 claims were $0.00 it did not add a picture. Here is the rule that does not work: if (Field("2012 Claims Total") != '$0.00 ' && Field("2013 Claims Total") != '$0.00 ') return CreateResource("/Users/Desktop/Projects/Fee Mailing/Merge Links/Chart Samples/" + (Field("@ClaimsChart"))); I rewrote the rule so that if 2012 and 2013 claims totals equaled $0.00 it would return a null resource, else it would return the claim chart. This rule works: if (Field("2012 Claims Total") == '$0.00 ' && Field("2013 Claims Total") == '$0.00 ') return NullResource() else return CreateResource("/Users//Desktop/Projects/Fee Mailing/Merge Links/Chart Samples/" + (Field("@ClaimsChart"))) What am I missing to get the first code to work correctly? Thanks, Jeremy
  20. I copied the code from this forum page. For some reason, when I typed the error code my response had the extra space in it. The code in my pdf does not have the extra space in it.
  21. I get the error "OnJobStart, line 1:TypeError: GetFileName(FusionPro.Composition.inputFileName).match(/\d+_\d+/g) has no properties" using the code above.
×
×
  • Create New...