PDA

View Full Version : tilt limits


d.tresca@coolview.com.br
11-20-2008, 03:36 PM
Hi folks
I've a panorama where I have to limit the tilt (the ceiling is horrible)
I'm using in xml the code as below, but it didn't works :confused:
the panorama is at:
http://www.br360.com.br/flash/inarco3.html


panoName = media/inarco03fsrgb/inarco03fsrgb

zoomMax= 1.5
zoomHome = 1
zoomMin= 0.87
panhome = 38
tilthome = -13


layer_3 = fpp/dtglassMeter.swf
layer_2 = fpp/hotspots.swf
layer_5 = fpp/autorotator.swf
layer_20 = fpp/editor.swf
layer_6 = fpp/cylConverter.swf
layer_9 = limits.swf


<limits>
pan_min =
pan_max =
tilt_min = -90
tilt_max = 25
</limits>

LepLep
11-20-2008, 04:54 PM
welcome to forum
probably solution is very simple

your xml point to http://www.br360.com.br/flass/limits.swf
it give 404 Not Found
all you other swf`s are located under /fpp directory
so if you change just
layer_9 = limits.swf
to
layer_9 = fpp/limits.swf
it should work

remember to always triple check you path ;)

d.tresca@coolview.com.br
11-20-2008, 05:29 PM
I've corrected my mistake:rolleyes:
thanks LelLep ;)
But the probleme isn't fixed:???:
http://www.br360.com.br/flash/inarco3.html

Thanks
Dudu


zoomMax= 1.5
zoomHome = 1
zoomMin= 0.87
panhome = 38
tilthome = -13


layer_3 = fpp/dtglassMeter.swf
layer_2 = fpp/hotspots.swf
layer_5 = fpp/autorotator.swf
layer_20 = fpp/editor.swf
layer_6 = fpp/cylConverter.swf
layer_9 = fpp/limits.swf


<limits>
pan_min =
pan_max =
tilt_min = -90
tilt_max = 25
</limits>

siesfor
11-20-2008, 06:12 PM
hey d, your problem, is that your <limits> tags, are inside your <parameters> tags. They need to be outside of them, like your <autorotator> tags are.

d.tresca@coolview.com.br
11-20-2008, 06:29 PM
Thank's siesfor
it's fixed now
:p;)