If you don't need to have the images loaded as resources, but are calling them otherwise, you can put the path to the directory they're stored in in the Advanced tab of the Compose dialog. There is a 'Search Path' edit box there that you would want to paste the directory path into. -Lauren
-----Original Message----- From: Pete Pickslay [mailto:[EMAIL PROTECTED] Sent: Tuesday, May 06, 2008 5:19 PM To: FusionPro Users Forum Subject: [fusionpro] RE: Large file names I apologize I don't think I was clear enough. I don't need to append .jpg to the end of the data in my graphics field. When I add the JPG files to the resource list the file names are becoming truncated because they are to long. Is there a Java script rule that can just point to the folder that they are in so I don't need to call them in as resources, thus bypassing the truncation issue? Thanks Pete _____ From: Alex Marshall [mailto:[EMAIL PROTECTED] Sent: Tuesday, May 06, 2008 2:29 PM To: FusionPro Users Forum Subject: [fusionpro] RE: Large file names Hello Pete, If the graphic file names correspond to the field values, then you should only need one rule for each field in the data which specifies a graphic, without having to add any Resources to the job. You should be able to do something like this in a Graphic JavaScript rule: return CreateResource(Field("graphic 1") + ".jpg"); In this example, a field value of "A1" would result in the graphic "A1.jpg". Obviously you will need to modify this to match the exact file names. You could also put the graphic file names, with extensions, directly into the database fields, which would allow you to simplify the JavaScript logic even more: return CreateResource(Field("graphic 1")); You may need to set the Search Path on the Advanced tab of the Composition Settings dialog to specify the location of the graphic files. regards, Alex -----Original Message----- From: Pete Pickslay [mailto:[EMAIL PROTECTED] Sent: Tuesday, May 06, 2008 4:32 PM To: FusionPro Users Forum Subject: [fusionpro] Large file names I have a lot of .jpg files that a customer would like us to call in variably. My only problem is that the names of these files a very large and are being truncated when loaded in the Resources library. For my graphic rule to work I need the names of the files to be exactly the way the customer named them. Any help would be appreciated. FP version 4.2P1d, Acrobat 6 Pro version 6.0.2, Power PC Mac Quad Processor G5 with OS 10.4.11 Thanks Pete EOS +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+- FusionPro 5.0 Now Available! Variable text on a curve and soft drop-shadows for variable text LIMITED TIME upgrade offer of $299 per license for current customers: http://fusionpro.printable.com/store/upgrade New licenses available for $599 each at: http://fusionpro.printable.com/store/ All FusionPro 5.0 customers to receive FusionPro 5.1 with Adobe Acrobat 8 and InDesign CS3 support when released for FREE. +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+- -- 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 -- +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+- FusionPro 5.0 Now Available! Variable text on a curve and soft drop-shadows for variable text LIMITED TIME upgrade offer of $299 per license for current customers: http://fusionpro.printable.com/store/upgrade New licenses available for $599 each at: http://fusionpro.printable.com/store/ All FusionPro 5.0 customers to receive FusionPro 5.1 with Adobe Acrobat 8 and InDesign CS3 support when released for FREE. +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+- -- 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 -- +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+- FusionPro 5.0 Now Available! Variable text on a curve and soft drop-shadows for variable text LIMITED TIME upgrade offer of $299 per license for current customers: http://fusionpro.printable.com/store/upgrade New licenses available for $599 each at: http://fusionpro.printable.com/store/ All FusionPro 5.0 customers to receive FusionPro 5.1 with Adobe Acrobat 8 and InDesign CS3 support when released for FREE. +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+- -- 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 -- +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+- FusionPro 5.0 Now Available! Variable text on a curve and soft drop-shadows for variable text LIMITED TIME upgrade offer of $299 per license for current customers: http://fusionpro.printable.com/store/upgrade New licenses available for $599 each at: http://fusionpro.printable.com/store/ All FusionPro 5.0 customers to receive FusionPro 5.1 with Adobe Acrobat 8 and InDesign CS3 support when released for FREE. +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+- -- 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 --
