Jump to content

tbone56

Members
  • Posts

    29
  • Joined

Converted

  • FusionPro Products
    Yes

tbone56's Achievements

Explorer

Explorer (4/14)

  • First Post Rare
  • Collaborator Rare
  • Week One Done
  • One Month Later
  • One Year In

Recent Badges

10

Reputation

  1. Awesome! That works great! Thanks a lot for the help.
  2. I basically just copy and paste your code and replace the field name. my field name is: Name if (FieldChanged("Name")) FusionPro.Composition.OpenNewOutputFile(Field("Name") + "." + FusionPro.Composition.outputFormatExtension;
  3. I get the same results on both sets of code. Steps that I take: Open Rules box Select New Click "callback" radio button Click the Call type - OnNewOutputFile or OnRecordStart Paste the code Change "YourFieldName" to "Field 1" Click Validate Get error "OnRecordStart, line 2: SyntaxError: missing ) after argument list" I'm clearly missing something very basic, but can't tell. Does that look like the correct steps? Multiple output files IS checked.
  4. Ok so I believe I entered that correctly, but I haven't edited these settings in a long while so I may have messed it up. I copied and pasted that code into a new rule but I get a syntax error saying that a ")" is missing. I look and there are an equal amount of opening and closing parenthesis. Any thoughts?
  5. Is it possible to name the compiled out put files a name from the database it's connected too? I generate hundreds of two-page pdfs and instead of it just saving the name as a counting number, I would like it to use a column from the database it pulls the user info from. Anyway to make that work?
  6. Our new printing process requires that all files we submit are to be uploaded as CMYK as apposed to pantone. I am working with Fusion Pro 9.1.0. How do I go about composing the pdf with an end result of CMYK colors in my PDFs? Thanks in advance!
  7. Looks like it just wasn't showing in Preview, but did display on the composed file. I appreciate your time Alex and Dan! Problem solved.
  8. Thanks to Dan for helping with the Error in the previous post i had. I have followed step for step but still get the same results. I've made sure that the .csv file was opened in notepad and saved with Unicode encoding, marked the asian character settings and have checked the data file loading was set to Latin -1. The character is still missing from adobe preview. Anything else I could be doing wrong?
  9. Thanks for that. I"m attempting to follow your steps, but after checking the box "Enable Asian Character Support" and clicking ok, I get this error: Error creating registry key: HKEY_LOCAL_MACHINE\Software\PTI\FusionPro\Paths
  10. Hello, I see this problem is from 2012 but I don't see a resolution besides upgrading. I'm having the same issues seeing the special character in Trē. I'm using Fusion Pro 9.1.0 and Adobe Acrobat 9.5.5. The Data Source I'm using is a .CSV file. The ē displays properly in both Excel and the Preview Record Selector, but completely disappears in the actual adobe acrobat preview that it generates. Any ideas? Please let me know if you need any further information and thank you in advance for looking.
  11. Hello, We are currently running FusionPro VDP Creator 9.1 and are creating business cards. We need to print crop marks onto the images after composing them but are running into an issue. Some of the business cards require a bleed and are larger in size ( lets say 3.75 x 2.25) than the regular 3.5 x 2 business cards. When selecting to use crop marks before composing on the cards that require bleed and generating the file, it places the crop marks on the marks of 3.75 x 2.25, but i actually need the marks to show the actual size that the cards will be cut down to, 3.5 x 2. Is this possible? Thanks in advance.
  12. Ok, so the only rule that we currently have in our pdf is the basic text QR Barcode Rule: var FieldOrRuleToEncode = "QRCode"; var EncodingMode = "Byte"; var ErrorCorrectionMode = "M"; var PreferredFormat = "0"; var PointSize = "4"; var NoFontTag = false; var Font = "IDAutomation2D"; var ProcessTilde = false; var DataToEncode = FieldOrRule(FieldOrRuleToEncode); return MakeQRBarcode(DataToEncode, ProcessTilde, EncodingMode, ErrorCorrectionMode, PreferredFormat, PointSize, NoFontTag, Font); As you can see the field it pulls data from is an entry in our CSV source. This field is collected from an online form and either has data such as myemail@myisp.net or the user simply chooses not to use the field. So what i'm wanting to do is basically what the original poster stated. It needs to generate a qr code only for the specific people who choose to enter something in there and not create a qr code for anyone who chooses not to. The second problem has been resolved by simply changing images. Thanks for your help.
  13. Hello. I realize this is an old posting but I thought i'd give it a shot. We just upgraded from fusion pro 6.1 - 9.1 so we're a little new at the QR abilities. This has the exact issue we are experiencing plus 1. We currently have business cards set up so that people may select the option to place a personalized qr code onto it. Same issue as the original poster has described, if the qr code field is blank, it displays a null qr code on the finalized image. We tried setting up the suggested javascript rule but aren't sure we are doing this correctly. Replaced fieldname with the exact field name its reading from, but still no luck, it still displays an invalid qr code. if (Field ("fieldname") == "") { return ""; } else { return Rule("QR Barcode Rule"); } The second issue may be more complex. Each business card has 2 different graphics on the business card which requires the QR code to be placed in a different place depending on where the graphic is. Let's say for example image 1 requires the code to be placed in the bottom left hand side of the card, and if they select design 2 it requires the qr code to be placed in the bottom right side of the card. What would be the simplest solution for this? Please let me know if any additional information is needed at all. I appreciate any assistance given.
  14. I think I might have figured it out but I if someone knows how, I would like to make sure I am doing it correctly.
×
×
  • Create New...