I made a textfield plugin, which is sometimes loading, sometimes not. Especially when entering the pano for the first time it's not loaded:
http://iolar.nl/vt/metscenter/
It's about the textfield at the bottom with the following text:
"U bevindt zich hier: Ingang"
Also when going straight to another room, the textfield plugin is most of the time not loaded:
http://iolar.nl/vt/metscenter/…staurant.xml%29
Code:
metscenter.xml, which is included in every other xml:
Code
<krpano version="1.0.8">
<events onxmlcomplete="action(setuppano);"
onenterfullscreen="set(plugin[openfs].visible,false); set(plugin[closefs].visible,true);"
onexitfullscreen ="set(plugin[openfs].visible,true); set(plugin[closefs].visible,false);"
/>
<action name="setuppano">
action(qtvrcursor);
txtadd(plugin[room].html, '<p>U bevindt zich hier: ', get(setroom), ' </p>');
</action>
Display More
The 'other' xml-files (in this case the intensive care):
Code
<krpano version="1.0.8" onstart="action(setmappoint);">
<include url="metscenter.xml" />
<action name="setmappoint">
action(activatespot,intensivecare,330,1,Intensive Care);
set(setroom,"Intensive Care");
</action>
What's going wrong?