#1
|
|||
|
|||
![]()
I have a challenge and have no clue as where to start:
Is there any way of doing this in FusionPro? I am using MacOS Lion, Acrobat 10.1.3, FusionPro 8.1.2 I'd appreciate any ideas on this one |
#2
|
||||
|
||||
![]()
Normally you can't access page number information in a rule to create a barcode, although I'm actually working on an enhancement to make this possible right now.
However, if the number of pages is based on a known value, such as the number of pages in a discrete* PDF resource, then you can do it. Since you know that the PDF resources will be only up to three pages, you can create three Unused Body Pages, then count the number of pages in the PDF resource, and populate a frame on each of the template body pages with a page of the PDF resource. And you can set a barcode with a specific page number on each of those pages as well. This could all be driven by logic like this in OnRecordStart: Code:
var r = CreateResource(Field("PDFResource"), "graphic"); for (var i = 1; i <= r.countPages; r++) { r.pagenumber = i; FusionPro.Composition.AddGraphicVariable("Graphic " + i, r.content); FusionPro.Composition.AddVariable("Barcode " + i, Make128Barcode(r.name + "|" + i + "|" + r.countPages)) FusionPro.Composition.SetBodyPageUsage("Graphic Page " + i, true) } * not "discreet," unless they're secret for some reason ![]()
__________________
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)}); ![]() Last edited by Dan Korn; August 3rd, 2012 at 09:13 AM.. Reason: removed hard-coded PDF file name |
#3
|
|||
|
|||
![]()
I wanted to make you aware that the functionality you are asking for, to typeset the page number as a barcode, has been added to the v8.2 software. Please see the Release Notes (section 'Able to re-calculate rules on a frame-by-frame basis') and the product's documentation for more details.
|
![]() |
Thread Tools | Search this Thread |
Display Modes | |
|
|