This is really weird,
I have a virtual tour all in scenes.
Some of the scenes have hotspots that link to other scenes with Zoomify pictures:
|
Quellcode
|
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
<scene name="zoomify1">
<view limitview="fullrange"/>
<image type="ZOOMIFY" hfov="1">
<zoomify type="CYLINDER"
url="photo1/ImageProperties.xml"
/>
</image>
<plugin name="back"
url="misc/back.png"
align="righttop"
y="100"
onclick="changeScene(get(sname));set(url,misc/btn_back_ON.png)"
/>
</scene>
|
I also have zoom buttons that work well in all scenes but stop working after returning from one of the zoomify scenes like the one above.
The zoom buttons are declared like this:
|
Quellcode
|
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
<plugin name="btnZoomOut"
url="%CURRENTXML%/misc/btn_zoomout.png"
keep="TRUE"
align="rightbottom"
x="140"
y="15"
alpha="0.3"
rotate="0"
ondown="set(fov_moveforce,+0.2);"
onup="set(fov_moveforce,0);"
onover="action(fadeinbutton,btnZoomOut)"
onout="action(fadeoutbutton,btnZoomOut)"
onhover="showtext(ZoomOut)"
/>
|
Any idea why this happens? Thank you.