#1
|
|||
|
|||
![]()
I'm not sure why I'm having so much difficulty with this one. I'm sure the answer is obvious:
Working on a kiss cut label template set 4 up on a page in my template with a static background. There are up to 16 available fields in the data. I need to add additional pages with the same static background when data is present in fields 5 through 16. Field 6 won't exist unless there's data in Field 5. Field 10 won't exist unless there's data in Field 5 through 9, etc. I thought a basic OnRecordStart rule would work by creating a 4 page template and then enabling/disabling pages based on the presence of data in any field after #4 like this: Code:
if(Field("Card5") == "") { FusionPro.Composition.SetBodyPageUsage("Page2", false); FusionPro.Composition.SetBodyPageUsage("Page3", false) FusionPro.Composition.SetBodyPageUsage("Page4", false); if(Field("Card5") !="" && Field("Card9") =="" && Field("Card13") =="") { FusionPro.Composition.SetBodyPageUsage("Page2", true); FusionPro.Composition.SetBodyPageUsage("Page3", false) FusionPro.Composition.SetBodyPageUsage("Page4", false); } else if(Field("Card5") !="" && Field("Card9") !="" && Field("Card13") =="") { FusionPro.Composition.SetBodyPageUsage("Page2", true); FusionPro.Composition.SetBodyPageUsage("Page3", true); FusionPro.Composition.SetBodyPageUsage("Page4", false); } else if(Field("Card5") !="" && Field("Card9") !="" && Field("Card13") !="") FusionPro.Composition.SetBodyPageUsage("Page2", true); FusionPro.Composition.SetBodyPageUsage("Page3", true); FusionPro.Composition.SetBodyPageUsage("Page4", true); } Any thoughts?
__________________
Lisa B. FusionPro VDP Creator 10.0.16 Adobe Acrobat Pro DC 2018 Mac OS X 10.13.6 (High Sierra) |
#2
|
||||
|
||||
![]()
Well, you could use Overflow pages, and let the composition engine decide for you when additional pages are necessary. Then you wouldn't need any code for this at all.
But with your current setup, I think this will work, if you initially set all the pages in question (2, 3, and 4) to be Unused in the Page Usage dialog: Code:
FusionPro.Composition.SetBodyPageUsage("Page2", (Field("Card5")); FusionPro.Composition.SetBodyPageUsage("Page3", (Field("Card9")); FusionPro.Composition.SetBodyPageUsage("Page4", (Field("Card13"));
__________________
Dan Korn FusionPro Developer / JavaScript Guru / Forum Moderator PTI Marketing Technologies | Printable | MarcomCentral I am a not a Support engineer, and this forum is not a substitute for Support. My participation on this forum is primarily as a fellow user (and a forum moderator). I am happy to provide help and answers to questions when I can; however, there is no guarantee that I, or anyone else on this forum, will be able to answer all questions or fix any problems. If I ask for files to clarify an issue, I might not be able to look at them personally. I am not able to answer private messages, emails, or phone calls unless they go through proper Support channels. Please direct any sales or pricing questions to your salesperson or inquiries@marcom.com. Complex template-building questions, as well as all installation and font questions or problems, should be directed to FusionProSupport@marcom.com. Paid consulting work may be required to fulfill your template-building needs. This is a publicly viewable forum. Please DO NOT post fonts, or other proprietary content, to this forum. Also, please DO NOT post any "live" data with real names, addresses, or any other personal, private, or confidential data. Please include the specific versions of FusionPro, Acrobat, and your operating system in any problem reports or help requests. I recommend putting this information in your forum signature. Please also check your composition log (.msg) file for relevant error or warning messages. Please post questions specific to the MarcomCentral Enterprise and Web-to-Print applications in the MarcomCentral forum. Click here to request access. Or contact your Business Relationship Manager (BRM/CPM) for assistance. Please direct any questions specific to EFI's Digital StoreFront (DSF) to EFI support. How To Ask Questions The Smart Way The correct spellings are JavaScript, FusionPro, and MarcomCentral (each with two capital letters and no spaces). Acceptable abbreviations are JS, FP, and MC (or MCC). There is no "S" at the end of "Expression" or "Printable"! The name of the product is FusionPro, not "Fusion". "Java" is not is not the same as JavaScript. Check out the JavaScript Guide and JavaScript Reference! FusionPro 8.0 and newer use JavaScript 1.7. Older versions use JavaScript 1.5. return "KbwbTdsjqu!spdlt\"".replace(/./g,function(w){return String.fromCharCode(w.charCodeAt()-1)}); ![]() |
![]() |
Thread Tools | Search this Thread |
Display Modes | |
|
|