PDA

View Full Version : Images will not preview


johncgaiser
October 10th, 2008, 01:36 PM
I have been working up a template for two days and cant get the image/logo to preview.

Dan Korn
October 10th, 2008, 02:13 PM
Please do a regular composition, not a Preview, by selecting "Compose" from the FusionPro menu, then click "View Log" when it finishes, and look for any messages related to the images in question.

johncgaiser
October 15th, 2008, 12:52 PM
This is the second template that logs There is no graphic resource named "01003500.eps"

I assure you the graphic is there and I have also employed the dir path to is as well with the same result.

I'm pullin my hair out!

Dan Korn
October 15th, 2008, 01:15 PM
Can you post the rule that's calling out the graphic? I suspect that you're doing something like this:

return Resource("01003500.eps");

When you really want to be doing something like this:

return CreateResource("01003500.eps");

The difference is that if you're calling Resource(), you have to define a named Graphic Resource, whereas if you're calling CreateResource(), it's looking it up by the file name.