Forum: Issues, Questions, Etc.
January 19th, 2021, 03:45 PM
|
Replies: 5
Views: 252
Re: Numeric IMP
Try this:
var fullNum = Field("IMBRCDFRJN");
var TrackingNum = fullNum.substr(0,20);
var RoutingNum = fullNum.substr(20);
return MakeIntelligentMailBarcodeEx(TrackingNum, RoutingNum, 10, "", "",...
|
Forum: Issues, Questions, Etc.
January 15th, 2021, 03:19 PM
|
Replies: 5
Views: 252
Re: Numeric IMP
If the barcode is already encoded into a string of 0, 1, 2, and 3 digits, then you can simply insert the field into the Text Editor and put it in the IDAutomation4State font. You don't need any...
|
Forum: The JavaScript Library
January 15th, 2021, 01:04 PM
|
Replies: 2
Views: 399
Re: Truncated text
This is a kind of complicated keeps condition, related to the Widows setting, and how the newline ('\n') is handled as a line break (<br>) but not a paragraph break (<p>).
That said, an Overflow...
|
Forum: FusionPro® VDP Creator
January 5th, 2021, 03:48 PM
|
Replies: 3
Views: 252
Re: CreateResource with incomplete name
If you're asking whether you can do a kind of wildcard-based search for a file on the system, like "ABC*", the answer is No, you can't, not from a rule. You would need to have a separate script or...
|
Forum: Issues, Questions, Etc.
January 5th, 2021, 03:32 PM
|
Replies: 3
Views: 209
Re: Moving Frames
Try this:
if (Field("AgentCoverPic").indexOf("IC") > -1)
FindGraphicFrame("FC-AgentPhoto").y -= 7200 * 3/8;
Or:
if (Field("AgentCoverPic").match("IC"))
...
|
Forum: Issues, Questions, Etc.
December 18th, 2020, 11:10 AM
|
Replies: 4
Views: 344
Re: Unicode Warning at Composition
I see, you get a different warning with Unicode enabled.
The real problem is that there's a Mac-only bug in getting the date and time info, which should display on the bottom right of the page. ...
|
Forum: Issues, Questions, Etc.
December 17th, 2020, 03:13 PM
|
Replies: 4
Views: 344
Re: Unicode Warning at Composition
I also get the warning if I have both the "Page Info" and the "Limit processing to MacRoman text (Disable Unicode) boxes checked. However, if I uncheck either of them, the warning goes away. So I...
|
Forum: FusionPro® VDP Creator
December 17th, 2020, 03:06 PM
|
Replies: 1
Views: 412
Re: Reload/Remove fonts
As my signature notes, these kinds of issues are hard to resolve in the context of this user forum, and Support is a better place to get help with them. Also, how font handling works, and what might...
|
Forum: Fonts
December 17th, 2020, 10:30 AM
|
Replies: 2
Views: 529
|
Forum: Issues, Questions, Etc.
December 15th, 2020, 03:45 PM
|
Replies: 2
Views: 216
Re: Sizing Inline Graphic with Variable font
A picture of what you're trying to accomplish would be worth a thousand words, and the collected job with the data would be better, so I have to do some guessing based on the limited information...
|
Forum: Graphic Rules
December 15th, 2020, 10:36 AM
|
Replies: 1
Views: 392
Re: Form with Digital Signature
Presumably, whoever fills out the form (i.e. the end user) would sign it, using tools in Acrobat or Reader:
https://helpx.adobe.com/reader/using/sign-pdfs.html
There are several online tools to...
|
Forum: Imposition
December 14th, 2020, 07:50 PM
|
Replies: 6
Views: 8,082
|
Forum: FusionPro® VDP Creator
December 14th, 2020, 10:29 AM
|
Replies: 2
Views: 226
|
Forum: MarcomCentral News
December 11th, 2020, 10:30 AM
|
Replies: 0
Views: 4,106
FusionPro VDP 12.0 Now Available
MarcomCentral® is proud to announce version 12.0 of the FusionPro® VDP Suite!
This release is a follow-up to our FusionPro VDP 11 launch (http://forums.pti.com/showthread.php?t=10133), which...
|
Forum: Issues, Questions, Etc.
December 10th, 2020, 06:33 PM
|
Replies: 6
Views: 511
Re: Insert multiple graphics from one field
Sorry, I don't see any attachment. Baseline shift is tricky, but you can usually accomplish it with a <superscript> or <subscript> tag. Once you get the images generally working, we can tweak that...
|
Forum: Issues, Questions, Etc.
December 10th, 2020, 03:44 PM
|
Replies: 6
Views: 511
Re: Insert multiple graphics from one field
This is a separate issue, which should probably have its own thread. But there were changes to the Text Editor for FP 11 on Mac. As you noted, sometimes the font can't be applied to the selected...
|
Forum: The JavaScript Library
December 10th, 2020, 10:57 AM
|
Replies: 1
Views: 524
Re: Question about a Variable
This is the difference between a variable with local scope and a variable with global scope. These explain the concept of scope pretty well:
https://www.w3schools.com/js/js_scope.asp...
|
Forum: Issues, Questions, Etc.
December 9th, 2020, 04:24 PM
|
Replies: 6
Views: 511
Re: Insert multiple graphics from one field
Some kind of mock-up of the output you're trying to make might be worth a thousand words here, but I think I get it.
You're talking about what we call inline graphics, which flow with text. ...
|
Forum: Issues, Questions, Etc.
December 4th, 2020, 01:36 PM
|
Replies: 1
Views: 306
Re: 3 and 9 barcode
What do you mean by nothing? Are you placing the variable for the rule you created into a text frame? Or are you simply setting down the field and selecting a font? Is there any kind of related...
|
Forum: Issues, Questions, Etc.
December 1st, 2020, 11:19 AM
|
Replies: 6
Views: 6,957
Re: CopyFitLine Rule
Yes. Well, I can't give you a date yet, but we do have a fix, which will be in an upcoming release. You can reference case FP-356.
|
Forum: Issues, Questions, Etc.
November 30th, 2020, 10:20 AM
|
Replies: 2
Views: 671
|
Forum: Getting Started
November 19th, 2020, 01:30 PM
|
Replies: 1
Views: 1,580
Re: Fusion Pro won't install
Please contact FusionProSupport@marcom.com, and include the exact versions of FusionPro, Acrobat, and your operating system.
|
Forum: The JavaScript Library
November 13th, 2020, 10:11 AM
|
Replies: 3
Views: 803
Re: Issue using file name
I'm not sure what you mean. The output file has a full path associated with it, not just a file name.
You can pass either a full path or just a file name to the...
|
Forum: The JavaScript Library
November 12th, 2020, 02:43 PM
|
Replies: 3
Views: 803
Re: Issue using file name
In cases like this, I try to make sure I know exactly what the input parameters are. In this case, you need to make sure you understand the format of the string you're applying the match function...
|
Forum: The JavaScript Library
November 12th, 2020, 11:52 AM
|
Replies: 1
Views: 489
Re: Is it possible to create a csv or txt output
I'm not sure what you mean by "merge the newly created checkdigit file into the original input."
But to your question, "Is there a way in javascript to output a rule's value (the checkdigit) to a...
|