Hi,
thanks for the examples!
The missing image is a Flashplayer bug.
The Flashplayer skips the first image when there are whitespace characters before the image in the html code.
In older krpano versions this wasn't happening because there the <data> element was parsed differently - there the whitespaces around the content where automatically removed during xml parsing. In newer versions the whole <data> content is stored as it is (including all whitespaces).
In the next krpano release, the textfield plugin will automatically strip the whitespaces away, then this case will work again.
A manual workaround would be removing the whitespaces between the <data ...> and the <img ...> definitions.
E.g. change this part:
|
Quellcode
|
1
2
|
<data name="text1">
<img align="left" width="123" hspace="10" vspace="10" src="data/img/img1.jpg"/>
|
to this one: (a single line without any whitespace characters like blanks or linebreaks)
|
Quellcode
|
1
|
<data name="text1"><img align="left" width="123" hspace="10" vspace="10" src="data/img/img1.jpg"/>
|
Best regards,
Klaus