#1
|
|||
|
|||
![]()
On more complex jobs, we need to use a 27 digit barcode.
In the code I need to specify which sheets are being pulled and the total quantity. for example, "0103" will be on sheet 1 of 3, "0203" is on sheet 2. Currently I've just been making a separate rule for each sheet, but is there a way to format it so it can pull the sheet number and total number of sheets? I've looked at other threads but couldn't find a solution that worked. *Edit. I did find one that was close but there was some confusing info there. This was suggested to be used. Code:
var TotSheets = FormatNumber( "00", FusionPro.Composition.impositionTotalSheets ); var CurrSheet = FormatNumber( "00", FusionPro.Composition.impositionSheetNumber ); Last edited by Dmiller35; May 20th, 2021 at 06:02 AM.. |
#2
|
|||
|
|||
![]()
Okay, so that doesn't work.
To be clear, Each finished 8.5x11 sheet will have a barcode on it. Currently, the file I'm working with is a 10 page letter, printed duplex to be 5 sheets. I already have a field in the barcode that will call for the record number. Here's what I've come up with and it appears to work. Code:
var TotSheets = FormatNumber( "00", 5); var CurrSheet = FormatNumber( "00", ((FusionPro.Composition.currentPageNumber+1)/2) ); Is this my best solution or is there something I'm missing? |
#3
|
||||
|
||||
![]() Quote:
Well, I don't really know what you're missing, because other than a few lines of code, I don't know what you already have. This would be a lot easier to analyze if you posted the job files. A few questions, though. One, did you check the "Re-evaluate this rule for every text flow" box? Two, have you tried putting the barcode onto a custom imposition sheet background, rather than directly onto an output page? Three, are you using stacked imposition? If not, then FusionPro doesn't automatically do preprocessing to calculate the total numbers of records, sheets, and stacks. You might need to add this to OnJobStart: Code:
FusionPro.Composition.forcePreprocessing = 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)}); ![]() |
![]() |
Thread Tools | Search this Thread |
Display Modes | |
|
|