#1
|
|||
|
|||
![]()
Good morning,
I have a rule that I need a little help on. The client is sending us one very large pdf file and I need to split it into single record pdfs by the page count in their data. Record 1 would be pdf pgs 1-6 Record 2 would be pdf pgs 7-10 Record 3 would be pdf pgs 11-12 Record 4 would be pdf pgs 13-16 Record 5 wuold be pdf pgs 17-22 etc. Only using the "Count" column in the data, I have Record 1 working using the "graphicRuleNeedsHelp" rule. I just can't figure out how to add the previous record page Counts to the current record page Counts to get the start and ending numbers on the subsequent records. NOTE: I have a rule, "graphicRuleWorks" which works correctly because I added 2 columns to the data with formulas to get the "start" and "end" pdf pages. I can use this rule, however, I would rather just use their "Count" column they supply. I'm uploading the collected file for a visual. Thanks in advance, Lisa
__________________
Lisa McKillop Digital Prepress Operator RR Donnelley Manchester Windows 10, Acrobat 11.0.3 FusionPro Desktop 10.0.26 |
#2
|
|||
|
|||
![]()
In JavaScript Globals add
Code:
var gCount = 1; Code:
var result = []; var r = CreateResource("test.pdf", "graphic"); var count = StringToNumber((Field("Count"))); var record = CurrentRecordNumber(); for (var p = gCount; p < count + gCount; p++) { r.pagenumber = p; result.push(r.content); } return result.join("<br>\n"); Code:
gCount = gCount + StringToNumber(Field("Count")); Also, in the files you uploaded you'll need to assign the second page the type of "Overflow" in Page Usage. Last edited by ScottHillock; October 25th, 2018 at 02:13 PM.. |
#3
|
|||
|
|||
![]()
Hi Scott,
Thanks for getting back to me. I'm not sure if it's something I'm doing (or not doing), but the output isn't working correctly. I may have not explained it clearly the first time. I'll attach screen captures ... sorry, they're BIG screen captures. This is how my output looks now with the new rule ... This is what I need ... Thanks again, Lisa
__________________
Lisa McKillop Digital Prepress Operator RR Donnelley Manchester Windows 10, Acrobat 11.0.3 FusionPro Desktop 10.0.26 |
#4
|
|||
|
|||
![]()
Sorry about that, I forgot one more rule.
Add this to an OnRecordEnd rule: Code:
gCount = gCount + StringToNumber(Field("Count")); |
#5
|
|||
|
|||
![]()
Perfect!
Thank you so much Scott! Lisa
__________________
Lisa McKillop Digital Prepress Operator RR Donnelley Manchester Windows 10, Acrobat 11.0.3 FusionPro Desktop 10.0.26 |
![]() |
Thread Tools | Search this Thread |
Display Modes | |
|
|