Hello Larry, Yes, in JavaScript rules. If you're talking about inserting a page from an external PDF file, you want to create a new FusionProResource object, and set its pageNumber property to the desired page. If you want to select pages from within the template document, you can use the FusionPro.Composition.SetBodyPageUsage function to enable particular pages for each record.
For the first part of your question about inserting the PDF pages, there's a sample in the FusionPro knowledgebase located here: <http://www.printable.com/support/kb> that shows exactly this. It's called "Inserting Multi-page PDF variable graphics" and is under the Sample Jobs area. Hope this helps. In short, you can query any variable PDF graphic resource to find out how many pages are in it. Here's a code snippit from the sample: //Create a new resource that references this PDFresourceRef = CreateResource(pathToPDF ,'graphic' ,'no'); //Find out how many pages it has pagesInPDF = PDFresourceRef.countPages; Hope this information helps. -Alex -----Original Message----- From: Larry Whiting [mailto:[EMAIL PROTECTED] Sent: Wednesday, August 01, 2007 11:03 AM To: FusionPro Users Forum Subject: [fusionpro] Inserting a single page from an external pdf Are there any examples of inserting a single page from a multiple page pdf (external file)? Larry Whiting Rastar Digital Marketing [EMAIL PROTECTED] T801-990-6421 C801-558-5316 +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+- Calling all FP Web Users! Do you have a question or lots of knowledge to share about FusionPro Web? If so, join our Printable Web to Print Users' Forum today! Send email to [EMAIL PROTECTED] to find out how! +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+- -- Users of FusionPro Desktop have unlimited free email support. Contact Printable Support at [EMAIL PROTECTED] -- View FusionPro Knowledge Base, FusionPro Samples at www.printable.com/vdp/desktop.htm -- You are currently subscribed to fusionpro as: [EMAIL PROTECTED] To unsubscribe send a blank email to [EMAIL PROTECTED] -- -- Note: All e-mail sent to or from this address will be received or otherwise recorded by the e-mail recipients of this forum. It is subject to archival, monitoring or review by, and/or disclosure to someone other than the recipient. Our privacy policy is posted on www.printplanet.com -- +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+- Calling all FP Web Users! Do you have a question or lots of knowledge to share about FusionPro Web? If so, join our Printable Web to Print Users' Forum today! Send email to [EMAIL PROTECTED] to find out how! +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+- -- Users of FusionPro Desktop have unlimited free email support. Contact Printable Support at [EMAIL PROTECTED] -- View FusionPro Knowledge Base, FusionPro Samples at www.printable.com/vdp/desktop.htm -- You are currently subscribed to fusionpro as: [EMAIL PROTECTED] To unsubscribe send a blank email to [EMAIL PROTECTED] -- -- Note: All e-mail sent to or from this address will be received or otherwise recorded by the e-mail recipients of this forum. It is subject to archival, monitoring or review by, and/or disclosure to someone other than the recipient. Our privacy policy is posted on www.printplanet.com --
