#1
|
|||
|
|||
![]()
Good Afternoon All,
I am trying to create a full service IMB using the font USPSIMBCompact. My original attempt to create this barcode was: var trackingStr = "00" + Field("MAILERID") + Field("SRVTYPEID") + Field("IMBSEQ"); return MakeOneCodeBarcode(trackingStr, Field("Z4, ZIP-4D"), 14); But my result used the font IDAutomationState. I know this is part of the coding in the return MakeOneCodeBarcode. I then tried to format the font by converting to javascript, as seen in the amended code below: var Var1 = "00" + Field("MAILERID") + Field("SRVTYPEID") + Field("IMBSEQ"); var Var2 = "Z4, ZIP-4D"; var Var3 = ""; var v_tracking = "5"; var v_font = "USPSIMBCompact.ttf"; var fontTag = false; var Var4 = ""; if (Var1.length != 20) ReportWarning("The tracking number is not the correct length of 20 characters in record number " + CurrentRecordNumber() + "."); if (Var2 != "") { if ((Field(Var2).length != 0) && (Field(Var2).length != 5) && (Field(Var2).length != 9) && (Field(Var2).length != 11)) ReportWarning("The routing number is not the correct length of 0, 5, 9, or 11 characters in record number " + CurrentRecordNumber() + "."); RoutingNum=Field(Var2); } else RoutingNum=""; return '<tracking newsize="' + v_tracking + '">' + MakeIntelligentMailBarcode(Var1, RoutingNum, Var3, fontTag, v_font, Var4) + "</tracking>"; This code works except the font is 10pt and I need it to be 14pt. I do not see where I can change the font size in the code. Also the font USPSIMBCompact does not preview or compose. Any help would be greatly appreciated! Thanks, Rob Sheldon |
#2
|
|||
|
|||
![]()
I apologize, I forgot to mention that I am using a Mac 10.8.5 running Acrobat 10.1.14 with FusionPro 9.1.0
|
#3
|
||||
|
||||
![]() Quote:
Quote:
Quote:
You need to specify the font by its family name, not by its TTF file name. So instead of "USPSIMBCompact.ttf", I think you want just "USPSIMBCompact". But all of that is way more complicated than what you need. I think all you really need to do is to have a very simple rule like so: Code:
var trackingStr = "00" + Field("MAILERID") + Field("SRVTYPEID") + Field("IMBSEQ"); return EncodeOneCodeBarcode(trackingStr, Field("Z4, ZIP-4D"), 14);
__________________
Dan Korn FusionPro Developer / JavaScript Guru / Forum Moderator PTI Marketing Technologies | Printable | MarcomCentral I am a not a Support engineer, and this forum is not a substitute for Support. My participation on this forum is primarily as a fellow user (and a forum moderator). I am happy to provide help and answers to questions when I can; however, there is no guarantee that I, or anyone else on this forum, will be able to answer all questions or fix any problems. If I ask for files to clarify an issue, I might not be able to look at them personally. I am not able to answer private messages, emails, or phone calls unless they go through proper Support channels. Please direct any sales or pricing questions to your salesperson or inquiries@marcom.com. Complex template-building questions, as well as all installation and font questions or problems, should be directed to FusionProSupport@marcom.com. Paid consulting work may be required to fulfill your template-building needs. This is a publicly viewable forum. Please DO NOT post fonts, or other proprietary content, to this forum. Also, please DO NOT post any "live" data with real names, addresses, or any other personal, private, or confidential data. Please include the specific versions of FusionPro, Acrobat, and your operating system in any problem reports or help requests. I recommend putting this information in your forum signature. Please also check your composition log (.msg) file for relevant error or warning messages. Please post questions specific to the MarcomCentral Enterprise and Web-to-Print applications in the MarcomCentral forum. Click here to request access. Or contact your Business Relationship Manager (BRM/CPM) for assistance. Please direct any questions specific to EFI's Digital StoreFront (DSF) to EFI support. How To Ask Questions The Smart Way The correct spellings are JavaScript, FusionPro, and MarcomCentral (each with two capital letters and no spaces). Acceptable abbreviations are JS, FP, and MC (or MCC). There is no "S" at the end of "Expression" or "Printable"! The name of the product is FusionPro, not "Fusion". "Java" is not is not the same as JavaScript. Check out the JavaScript Guide and JavaScript Reference! FusionPro 8.0 and newer use JavaScript 1.7. Older versions use JavaScript 1.5. return "KbwbTdsjqu!spdlt\"".replace(/./g,function(w){return String.fromCharCode(w.charCodeAt()-1)}); ![]() |
#4
|
|||
|
|||
![]()
If you have control of the data, I use the alpha characters for my IMB and then I can just apply the font to that field in a regular text box. No rule needed.
__________________
Don Reimer - JavaScript Novice MAC OS 10.14.6 Acrobat DC FP Creator 12.0.1 |
#5
|
|||
|
|||
![]()
Thanks Dan,
This works...sometimes you can't see the forest through the trees. Thanks as always for getting me out of a tough spot. ![]() |
![]() |
Tags |
intelligent mail barcode, uspsimbcompact |
Thread Tools | Search this Thread |
Display Modes | |
|
|