Forum: The JavaScript Library
July 6th, 2022, 03:12 PM
|
Replies: 6
Views: 1,539
|
Forum: The JavaScript Library
July 6th, 2022, 02:36 PM
|
Replies: 6
Views: 1,539
|
Forum: Issues, Questions, Etc.
June 16th, 2022, 10:51 AM
|
Replies: 8
Views: 1,118
Re: Repeating Sequential Ranges Rule
I am having the same issues at 95% I think the amount of overflow going on just may be too much to handle.
I took a different approach. Removed the overflow completely and moved everything into...
|
Forum: Issues, Questions, Etc.
June 10th, 2022, 01:47 PM
|
Replies: 8
Views: 1,118
Re: Repeating Sequential Ranges Rule
You need to remove the rule from the text frame on the overflow page, then in the text frame properties palatte, turn on the checkbox that says "Overflow To".
Also in your Composition Settings...
|
Forum: Issues, Questions, Etc.
June 10th, 2022, 10:44 AM
|
Replies: 8
Views: 1,118
Re: Repeating Sequential Ranges Rule
Give this a shot:
var start_number = 1001;
var largest_number = 146000;
var range = 5;
var sequence = "";
while (start_number +range <= largest_number)
{
sequence += start_number + "-"...
|
Forum: FusionPro® VDP Creator
May 20th, 2022, 02:01 PM
|
Replies: 2
Views: 691
Re: Complex Time Formatting Rule
This should work for you. Just a precaution though, you need to make sure you put that space in between the time and the meridiems.
This works by splitting the time up into 3 sections, the hour,...
|
Forum: Issues, Questions, Etc.
April 6th, 2022, 10:27 AM
|
Replies: 2
Views: 3,029
Re: Fit frame to copy
Attached is an example on how to do this using FusionProTextMeasure and a white box.
|
Forum: FusionPro® VDP Creator
April 6th, 2022, 09:44 AM
|
Replies: 10
Views: 15,233
|
Forum: Getting Started, Learning, Etc.
April 6th, 2022, 09:39 AM
|
Replies: 3
Views: 2,107
Re: Contains Command
if (Field("FieldName").indexOf("AAAA") > -1)
This returns the index of "AAAA" within the given string starting with 0.
For instance if your string is "zzzAAAAzzz" it would return 3.
If your...
|
Forum: FusionPro® VDP Creator
March 23rd, 2022, 09:59 AM
|
Replies: 2
Views: 4,635
Re: Sequential in Ranges
This might help break it down for you:
var start_number = 815255;
var increment = 7;
var crn = CurrentRecordNumber() -1;
var set_start = start_number +crn +(crn * increment);
var set_end =...
|
Forum: FusionPro® VDP Creator
March 23rd, 2022, 09:42 AM
|
Replies: 3
Views: 974
Re: Improving Performance..
In the composition menu under Output, change Optimize over to Basic. Advanced will significantly slow you down.
|
Forum: FusionPro® VDP Creator
March 15th, 2022, 09:50 AM
|
Replies: 9
Views: 1,874
Re: Phone Labels appearing when cell is empty
It's not working because you are filtering on the length being greater than 4. Your shortest length is "Cell: " which is 6.
Anyways, that wont work with the formatting you want. Give this a shot:...
|
Forum: Getting Started
February 3rd, 2022, 01:28 PM
|
Replies: 7
Views: 6,794
Re: Am I the only one?
Even though the old UI looked dated, I do miss it.
With that said, I have been using the new(ish) version since it came out and have gotten used to it. You really have to be diligent about...
|
Forum: Barcodes
July 21st, 2021, 04:49 PM
|
Replies: 0
Views: 4,108
Using MakeQRBarcodeGraphic in OnRecordStart
I'm trying to see if its possible to use MakeQRBarcodeGraphic in an external JS function that is loaded into OnRecordStart.
The MakeQRBarcodeGraphic function is working fine and returns a Resource...
|
Forum: The JavaScript Library
October 8th, 2020, 01:12 PM
|
Replies: 2
Views: 9,304
Re: Multiple quantitys per record from data
You can put this in OnRecordStart
FusionPro.Composition.repeatRecordCount = parseInt(Field("print count"));
But that doesn't seem like a very efficient way to do this. It may be better to look...
|
Forum: FusionPro® VDP Creator
October 5th, 2020, 09:02 AM
|
Replies: 4
Views: 8,111
Re: Images with Masks for transparency
This is not a long term solution, but you should be able to setup a batch process with an action in Photoshop.
You would need to batch open each image, use the layer as a selection mask, crop,...
|
Forum: Getting Started, Learning, Etc.
January 15th, 2020, 08:16 AM
|
Replies: 3
Views: 33,623
Re: How to make array data global?
You can assign global variables in OnRecordStart by omitting the "var " before the assignment.
Then in your other rules put this bit in the top line:
if (FusionPro.inValidation)...
|
Forum: Issues, Questions, Etc.
December 16th, 2019, 11:12 AM
|
Replies: 0
Views: 10,341
FusionPro 11 Imposition Issue
Please see the attached imposition. There seems to be 2 bugs happening. This has been tested under version 11.0.2 and 11.0.8.
First the imposition should be HorizontalPosition=-0.145 " but this...
|
Forum: FusionPro® VDP Creator
November 1st, 2019, 02:25 PM
|
Replies: 1
Views: 7,345
Re: shift Tab between Phone and email
Change the 14400 to whatever your frame width is (or just slightly under). Value is inches times 7200.
if (Field("Phone") && Field("Email"))
return '<p br=false quad=L...
|
Forum: Issues, Questions, Etc.
October 24th, 2019, 10:15 AM
|
Replies: 3
Views: 7,778
Re: Jpeg Compressed Tif Issue
I tried emailing support 3 times and I keep getting rejected due to some seriously aggressive spam blocking. I removed all links and even sent a non-html version and its still rejected.
|
Forum: Issues, Questions, Etc.
October 17th, 2019, 01:04 PM
|
Replies: 3
Views: 7,778
Jpeg Compressed Tif Issue
There seems to be an issue when Tif files saved out of Photoshop have Jpeg compression turned on. FusionPro (both 10 and 11) will render a PDF but the images are flipped upside down. Fortunately the...
|
Forum: Barcodes
September 18th, 2019, 10:30 AM
|
Replies: 6
Views: 18,431
Re: UPC Help
Change the line that is
retstr = "0"+Field(Var1);
to this:
retstr = Field(Var1);
if (retstr.length < 11) {
retstr = "0" + retstr;}
I'm not sure what the warning is but you might try...
|
Forum: FusionPro® VDP Creator
September 17th, 2019, 01:26 PM
|
Replies: 5
Views: 8,656
Re: Complex Form Numbering Question
It looks like the only thing that is really variable is the Exam #.
You could create a rule that is put in a text frame on each page that looks something like this:
var form =...
|
Forum: FusionPro® VDP Server (API)
March 15th, 2019, 03:05 PM
|
Replies: 5
Views: 21,299
Re: Original Input File Name Path
Sorry if I confused the issue with the product names. The server itself has the API on it. In this particular case, it's just used to compose jobs being sent to Producer.
I understand everything...
|
Forum: FusionPro® VDP Server (API)
March 15th, 2019, 01:35 PM
|
Replies: 5
Views: 21,299
Re: Original Input File Name Path
The job is a regular template in acrobat that is then sent to the API server for composition.
What happens is data files are placed on a file server in a folder that is the job number. The input...
|