Forum: Issues, Questions, Etc.
December 17th, 2021, 09:57 AM
|
Replies: 3
Views: 3,119
Re: Printing External Database
When using XDF with producer, we always have to be sure to include a copy of it in the folder designated in the "search path for images" in producer.
|
Forum: The JavaScript Library
June 1st, 2021, 06:31 AM
|
Replies: 2
Views: 4,100
|
Forum: The JavaScript Library
May 28th, 2021, 06:52 AM
|
Replies: 2
Views: 4,100
Making this more concise and dynamic
I just had a job that was a coupon where each card had a unique code, and they wanted the job delivered in multiple sets of differing quantities. Here is the code I used to successfully produce the...
|
Forum: Issues, Questions, Etc.
May 20th, 2021, 11:21 AM
|
Replies: 9
Views: 3,751
Re: Losing art
This might be a reach, but try exporting with different compression settings in the Output tab of the composer. There is now an Advanced compression that has given me some bad output with images. It...
|
Forum: FusionPro® VDP Creator
January 7th, 2021, 07:23 AM
|
Replies: 3
Views: 12,963
Re: Exporting in 2500 record chunks
Are you wanting 2500 sheets in a stack? Then the imposition would need to be set to be 2500 in the stack, and your output would need to be set to 5000 records per chunk, since the layout is 2up.
|
Forum: The JavaScript Library
September 10th, 2020, 12:28 PM
|
Replies: 2
Views: 13,996
|
Forum: The JavaScript Library
September 4th, 2020, 06:19 AM
|
Replies: 2
Views: 13,996
Another way to read page number?
For many years we have used a different software for personalized images. That software creates the images and creates an appended data list, such that the name of each unique image is in a new field...
|
Forum: Tables & Charts
April 23rd, 2020, 06:58 AM
|
Replies: 9
Views: 19,096
Re: Table Formatting Help
I should say, insert your cell structure here, not your table structure. Your table structure is defined ahead of the loop
|
Forum: Tables & Charts
April 23rd, 2020, 06:54 AM
|
Replies: 9
Views: 19,096
Re: Table Formatting Help
Use a loop to build the table, and insert a break tag to break out of the loop if a field is empty.
for (var i = 0; i <= 16; i++)
{
var FieldToUse = (i + 1)
...
|
Forum: Issues, Questions, Etc.
March 5th, 2020, 10:53 AM
|
Replies: 5
Views: 16,335
Re: internet image path
Thanks. I did mean 10.14.5, fat fingers! Anyway Dan, your presumptions are true and I can not access the dropbox folder from within FP. What I did to work around this is to set up a folder action to...
|
Forum: Issues, Questions, Etc.
March 5th, 2020, 05:20 AM
|
Replies: 5
Views: 16,335
Re: internet image path
Dan,
The link is an "https". The template is being built in 11.0.9 on a Mac running 12.14.5, and due to the job's size, I intend on rendering it in our Producer that is running Windows Server 2016.
|
Forum: Issues, Questions, Etc.
March 4th, 2020, 01:08 PM
|
Replies: 5
Views: 16,335
internet image path
We have a client that is demanding that we use a Dropbox link as an image path to search for images. I am attempting this rule:
var pic = CreateResource("dropbox link/"+Field("Image"), "graphic",...
|
Forum: Getting Started
March 2nd, 2020, 09:48 AM
|
Replies: 2
Views: 33,843
Re: Cannot install FusionPro
You can thank Adobe for this. Acrobat DC 2020 is the issue. There is newer version of the 11.0.9 installer in the downloads that will work.
|
Forum: Issues, Questions, Etc.
February 28th, 2020, 09:33 AM
|
Replies: 7
Views: 16,113
Re: CopyFitLine Rule
FYI:
I have a template that uses the CopyFit line function on a text frame, and I get that same error when composing locally on my mac. But if I use Producer, I do not get the message. The job...
|
Forum: FusionPro® Expression™
November 1st, 2019, 05:37 AM
|
Replies: 8
Views: 48,503
Re: Feature request
Dan,
Yes, I wholeheartedly agree that with Masking Text personalization, this is possible. But when it is an Image Character personalization like this example, I do not see how it can be...
|
Forum: FusionPro® Expression™
October 28th, 2019, 07:24 AM
|
Replies: 8
Views: 48,503
|
Forum: FusionPro® Expression™
October 28th, 2019, 07:23 AM
|
Replies: 8
Views: 48,503
|
Forum: FusionPro® Expression™
October 28th, 2019, 07:21 AM
|
Replies: 8
Views: 48,503
Re: Feature request
Yes, exactly.
Here are samples, one with the shadow within the variable, one without.
|
Forum: FusionPro® Expression™
October 25th, 2019, 12:48 PM
|
Replies: 8
Views: 48,503
Re: Feature request
Yes, but what I am wishing for is to apply overlays to Fill Images and Image Characters that follow the shading of the background image without affecting the background.
|
Forum: FusionPro® Expression™
October 25th, 2019, 10:38 AM
|
Replies: 8
Views: 48,503
Feature request
Coming from DirectSmile, there is a feature that I miss, the ability to add an overlay strictly to the personalization. For instance, a personalization goes from a light area of an image into a dark...
|
Forum: FusionPro® VDP Producer (formerly FusionPro® Direct)
June 12th, 2019, 08:57 AM
|
Replies: 7
Views: 56,253
Re: NexPress Dimensional Clear Ink
Up until three years ago we had a Nexpress. When wanting to us the clear ink, we would have to make it a spot color of the EXACT name that Kodak specified, and it was case sensitive. It was something...
|
Forum: Imposition
May 17th, 2019, 05:21 AM
|
Replies: 2
Views: 13,456
Re: different imposition layout
Yes. Setup the imposition like this:
Horizontal step = 4, spacing = 1.5"
Vertical step = 5, spacing = 0
Then, right click or control click on the 1st column and select "discard space and bleed...
|
Forum: The JavaScript Library
April 5th, 2019, 06:30 AM
|
Replies: 3
Views: 10,423
|
Forum: The JavaScript Library
April 5th, 2019, 06:01 AM
|
Replies: 3
Views: 10,423
Re: Date error
I'm sure there is a more concise way to do this, but this works:
var month = Left(Field("date"), 2)
var day = Left((Right(Field("date"), 6)), 2)
var year = Right(Field("date"), 4)
return...
|
Forum: Formatting Text
March 7th, 2019, 10:34 AM
|
Replies: 3
Views: 13,178
Re: Conditional text
oops, have a parenthesis instead of a bracket, use this:
{return ("$" + Field("Fieldname")}
|