PDA

View Full Version : Reference Manual Images Not Displaying



leozelig
May 15th, 2021, 15:40
I am creating a reference manual, and all of my image blocks are displaying solid white. The image link works fine if you click on the solid white box to open the image. I checked that all of the file names and links match. I also looked at other modules to check my coding, and everything looks ok. Here's a screenshot of what it looks like:

46734

This is the code for the <refpages> section:



<id-00001>
<blocks>
<id-00001>
<align type="string">center</align>
<blocktype type="string">image</blocktype>
<size type="string">500,647</size>
<image type="image">
<bitmap>images/001 Inside Front Cover.jpg</bitmap>
</image>
<imagelink type="windowreference">
<class>imagewindow</class>
<recordname>image.insidefrontcover</recordname>
</imagelink>
</id-00001>
</blocks>
<keywords type="string">inside front cover</keywords>
<listlink type="windowreference">
<class>reference_manualtextwide</class>
<recordname>..</recordname>
</listlink>
<name type="string">Inside Cover</name>
</id-00001>


Any ideas?

Zacchaeus
May 15th, 2021, 15:55
This is from a client.xml that works.

<id-00003>
<align type="string">center</align>
<size type="string">500,349</size>
<image type="image">
<bitmap type="string">images\Cover.jpg</bitmap>
</image>
<caption type="string" />
<imagelink type="windowreference">
<class>imagewindow</class>
<recordname>image.img_cover_jpg</recordname>
</imagelink>
<blocktype type="string">image</blocktype>
</id-00003>

I can see some slight differences from your one.

leozelig
May 15th, 2021, 17:19
Thanks, Zacchaeus. I tried the forward slash and back slash - doesn’t seem to matter. I also tried <bitmap type=“string”>, which didn’t change anything either. I will try cutting and pasting your code and change the file names to see if that works. Thanks for the reply!