Jump to content

Images will not preview


johncgaiser

Recommended Posts

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.

Link to comment
Share on other sites

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...