In my customers Print One when they want to order a 8.5" x 11" Form they navigate to the 8.5" x 11" Forms section and when they open it up there is one field which contains a drop down menu.
When they click on the drop down they have a library of forms to choose from (Form1.pdf, form2.pdf, etc...) which I have uploaded, some of these are multiple pages. They then choose which one they want. When they select a multiple page form and click "view pdf", I want them to preview all of the pages. My template is essentially a blank 8.5' x ll' graphic copyhole which is filled with the library image that the user chooses from the drop down menu. It needs to be flexible to accommodate forms ranging from 1 to 4 pages. Dan -----Original Message----- From: David Sweet [mailto:[EMAIL PROTECTED] Sent: Tuesday, May 08, 2007 9:01 AM To: FusionPro Users Forum Subject: [fusionpro] RE: Multiple Page file template question Dan, I think I need a little clarification here. Not quite used to web programming yet. When you say "graphic file in library triggered by drop down menu" does this mean a file that is uploaded by your customer?, or activating a pdf document that is stored within a library folder stored on your website? Off-hand I don't remember the command for pdf page counting, but you can use javascript to return the number of pages that any given pdf graphic contains. I thinks it something like... var pathName = "..\\resources\\"; var x = new FusionProResource(pathName + "MyFile.pdf", "graphic"); x.name = (pathName + "MyFile.pdf"); pages = x.length; Again, I'm not quite sure about the actual code for the page counting feature of a pdf file, but I do know one exists. David A. Sweet Web Designer/Graphic Designer HKM Direct Market Communications A DirectConnectGroup Company -- 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 -- -- 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 --
