I am having a really tough time with a scene based tour I am building using the example code from "scenes-with-imagemap.html". I have 11 panoramas/scenes and want each one to have its own startup values. I included them where I thought they went but they have no effect on the scene when it loads at all. Actually I cant find a way to change any of the view settings for an individual scene without it being global. The same thing happens when I went back to the provided example, this example code is as follows
and no changes on the view line do anything;
<!-- first scene/pano -->
<scene name="scene1" onstart="action(startscene);">
<action name="startscene">
showtext([b][i]scene 1[/i][/b], infostyle);
action(activatespot,scene1, 40);
</action>
<plugin name="mapmask" url="pano2_mapmask.png" parent="map" enabled="false" onloaded="updatemask();" />
<view hlookat="-15" vlookat="-10" fov="90" />
<image type="CUBESTRIP">
<cubestrip url="pano1.jpg" />
</image>
<!-- place here scene local elements like plugins,hotspots, ... -->
<hotspot name="spot2" url="spot2.png" ath="-42" atv="-12" scale="0.6" zoom="true"
alpha="0.3"
onover="tween(alpha,1);tween(scale,1);"
onout="tween(alpha,0.3);tween(scale,0.6);"
onclick="looktohotspot(spot2); loadscene(scene2, null, MERGE, BLEND(1));"
/>
</scene>
Display More
When I try to change the values set using the
nothing happens, it has no effect at all. I tried doing it in the example as well as in my code and nothing seems to work to change the fov, vlook, hlook, zoom max and zoom min either.
I really need some help here I have been banging my head against this for two days now.
Thank you in advance
Rick