#1
|
||||
|
||||
![]()
I’m using this rule “OnRecordStart” to call in different pages based on the data and I want to add an “Error” page to this rule and i’m having an issue trying to write it. The “Error” page will be called in when there is no match in the data for “E” or “F”.
Help please. if (Field(“Data") != "E") { FusionPro.Composition.SetBodyPageUsage("E", false) } if (Field("Data") != "F") { FusionPro.Composition.SetBodyPageUsage("F", false) }
__________________
Kal Bedi FusionPro Desktop 10.1.9 Adobe Acrobat Pro DC Mac OS Sierra 10.12.5 Canada |
#2
|
||||
|
||||
![]()
Set all the pages (E, F, error, etc.) to be unused initially, and do this in the rule:
Code:
try { FusionPro.Composition.SetBodyPageUsage(Field("Data"), true); } catch (e) { FusionPro.Composition.SetBodyPageUsage("Error", true); }
__________________
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)}); ![]() |
#3
|
||||
|
||||
![]()
Thank you Dan.
That worked. ![]() ![]()
__________________
Kal Bedi FusionPro Desktop 10.1.9 Adobe Acrobat Pro DC Mac OS Sierra 10.12.5 Canada |
#4
|
||||
|
||||
![]()
Another issue Dan.
This works fine for Simplex, one sided only. How would it work for Duplex, two sided per record? Record1 Page1 = E Page2 = E-2 Record2 Page1 = Error Page2 = Error-2 Page 2 will always be what the data calls in + -2
__________________
Kal Bedi FusionPro Desktop 10.1.9 Adobe Acrobat Pro DC Mac OS Sierra 10.12.5 Canada |
#5
|
||||
|
||||
![]() Quote:
Code:
try { FusionPro.Composition.SetBodyPageUsage(Field("Data"), true); } catch (e) { FusionPro.Composition.SetBodyPageUsage("Error", true); } try { FusionPro.Composition.SetBodyPageUsage(Field("Data") + "-2", true); } catch (e) { FusionPro.Composition.SetBodyPageUsage("Error-2", true); }
__________________
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)}); ![]() |
#6
|
||||
|
||||
![]()
Thanks Dan, this truly save me hours from how I was originally doing it.
![]()
__________________
Kal Bedi FusionPro Desktop 10.1.9 Adobe Acrobat Pro DC Mac OS Sierra 10.12.5 Canada |
![]() |
Thread Tools | Search this Thread |
Display Modes | |
|
|