Forum: Issues, Questions, Etc.
March 5th, 2020, 07:29 AM
|
Replies: 5
Views: 16,392
Re: internet image path
I don't think dropbox is going to support that. If you could get a url for each file you would be in a better situation. But only having a url to a folder isn't going to help.
To isolate the...
|
Forum: Issues, Questions, Etc.
December 11th, 2019, 11:58 AM
|
Replies: 5
Views: 11,996
|
Forum: FusionPro® VDP Creator
November 22nd, 2019, 08:51 AM
|
Replies: 4
Views: 11,825
|
Forum: Issues, Questions, Etc.
July 15th, 2019, 10:18 AM
|
Replies: 2
Views: 5,901
|
Forum: Issues, Questions, Etc.
July 12th, 2019, 12:30 PM
|
Replies: 3
Views: 7,710
|
Forum: FusionPro® VDP Creator
June 6th, 2019, 12:25 PM
|
Replies: 8
Views: 11,803
Re: Output to Folder on Server
I don't have any experience with Producer. I assumed we were talking about Creator.
The path name is going to be different than if it were on a Mac. I believe you'll need to have the share mapped...
|
Forum: FusionPro® VDP Creator
June 5th, 2019, 12:58 PM
|
Replies: 8
Views: 11,803
Re: Output to Folder on Server
Looks like the actual path you need is /Volumes/Jobs/ABOTA/
The smb://... is just the server address and not it's location in relation to the filesystem.
...
|
Forum: FusionPro® VDP Creator
June 5th, 2019, 12:32 PM
|
Replies: 8
Views: 11,803
Re: Output to Folder on Server
Couple of things. First when making a post with code use the advanced editor, or use this: --- Code goes here ---
Second, does that path "/Volumes/smb/192.168.200.72/Jobs/ABOTA/" even exist? If...
|
Forum: FusionPro® Expression™
June 3rd, 2019, 09:07 AM
|
Replies: 4
Views: 18,190
Re: OnRecordStart Execution
On your VARIABLE8 you're missing the Field part. Also, I'm not sure if it might have slipped your mind, but in your if statement there needs to be a condition on each pair. So, just having the == ""...
|
Forum: The JavaScript Library
May 17th, 2019, 07:17 AM
|
Replies: 3
Views: 15,232
Re: Replace Symbol
I believe you have the order of your parameters switched on your percentage example.
With replace the first parameter is what you are searching for, and the second is what to replace it with.
...
|
Forum: FusionPro® VDP Creator
April 17th, 2019, 09:02 AM
|
Replies: 5
Views: 8,985
Re: Replacing all text occurrences
Dan, sample files attached.
Unchecking the Limit processing to.. checkbox does make the notdef character not appear. And it's a viable solution. But, I usually leave that checked to make sure the...
|
Forum: FusionPro® VDP Creator
April 16th, 2019, 03:03 PM
|
Replies: 5
Views: 8,985
Re: Replacing all text occurrences
Excellent Dan, thank you. I'll keep in mind the <hkeep> tags when I need them.
The character accidentally shows up sometimes in FusionPro text frames when the InDesign source document has...
|
Forum: Dates
April 15th, 2019, 11:23 AM
|
Replies: 2
Views: 12,214
|
Forum: FusionPro® VDP Creator
April 9th, 2019, 11:50 AM
|
Replies: 5
Views: 8,985
Replacing all text occurrences
I'm looking to create a rule that will replace all occurrences of a string of text, even when that text is not part of a rule.
Specifically we're having an issue where the notdef symbol is being...
|
Forum: FusionPro® VDP Producer (formerly FusionPro® Direct)
February 20th, 2019, 08:35 AM
|
Replies: 3
Views: 14,422
Re: Compose Ordered by External Data
I don't believe this is possible.
FusionPro composes in the order of the input Data Source, and I don't believe there is a way to seek around that data source.
|
Forum: FusionPro® VDP Creator
February 1st, 2019, 02:22 PM
|
Replies: 2
Views: 10,247
Re: Clean Up Repetitive Coding
Replacing the repetition of it with a loop, and a join.
var Strline = [];
for (i=1; i <= 16; i++){
Strline[i] = (!Field("series_" + i)) ?" ": Trim(Field("series_" + i) + "<br>");
}
return...
|
Forum: FusionPro® VDP Creator
January 8th, 2019, 12:26 PM
|
Replies: 3
Views: 11,432
Re: Working with themplates
I think you're trying to use repeatable templates. Which might be beneficial in this project, but I would do them in reverse, with the address block being the repeatable template, and create a new...
|
Forum: FusionPro® VDP Creator
January 8th, 2019, 11:40 AM
|
Replies: 4
Views: 10,332
|
Forum: The JavaScript Library
October 31st, 2018, 11:27 AM
|
Replies: 12
Views: 20,599
|
Forum: The JavaScript Library
October 25th, 2018, 01:12 PM
|
Replies: 4
Views: 9,437
Re: Pulling in PDF pages
Sorry about that, I forgot one more rule.
Add this to an OnRecordEnd rule:
gCount = gCount + StringToNumber(Field("Count"));
|
Forum: The JavaScript Library
October 25th, 2018, 11:52 AM
|
Replies: 4
Views: 9,437
Re: Pulling in PDF pages
In JavaScript Globals add
var gCount = 1;
Change your rule to:
var result = [];
var r = CreateResource("test.pdf", "graphic");
var count = StringToNumber((Field("Count")));
var record =...
|
Forum: Issues, Questions, Etc.
September 21st, 2018, 01:12 PM
|
Replies: 3
Views: 8,334
Re: Unwanted characters exporting from FusionPro
Those are missing glyph symbols. It's a result of the character and whichever font you have assigned to the text not having a glyph specifically for it, I believe.
if you change your return...
|
Forum: The JavaScript Library
September 19th, 2018, 01:47 PM
|
Replies: 3
Views: 8,450
Re: Limit the number of records read
I have not used Marcom, but to answer the first part of your question, this will work:
var RecordLimit = 20;
if (FusionPro.Composition.inputRecordNumber >...
|
Forum: Graphic Rules
September 19th, 2018, 01:42 PM
|
Replies: 5
Views: 14,831
|
Forum: FusionPro® VDP Creator
September 13th, 2018, 03:03 PM
|
Replies: 3
Views: 7,670
Re: PDF Loop
This will work i think:
for (i=1; i<=4; i++){FusionPro.Composition.SetBodyPageUsage(i, false);}
FusionPro.Composition.repeatRecordCount = Field("Output");
var pageToCompose =...
|