You are not logged in.

1

Friday, August 26th 2016, 1:20pm

On dragging hotspot, the pano does not move

Hello krpano enthusiasts,

In my pano, I have a single hotspot (see code below). When I click over it and drag, I'd like that the pano moves as well as if I'd have clicked-dragged elsewhere. However, the pano remains fixed in my example and I'm wondering how to solve this.

Source code

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
<hotspot name="xyz"
         type="image"
         url="hotspot.jpg"
         keep="false"
         visible="true"
         enabled="true"
         handcursor="false"
         maskchildren="false"
         zorder=""
         style=""
         zoom="false"
         distorted="true"
	 rx="0.0" ry="0.0" rz="0.0"
         width="103.515625"
	 height="86.9140625"
         edge="lefttop"
	 ox="34.1796875"
	 oy="195.3125"
	 ath="-90" atv="0"
         scale="1.0"
         rotate="0.0"
         alpha="0.0"
         onhover=""
     	 onover=""
     	 onout=""
         ondown=""
         onup=""
         onclick=" js(checkclick(1););"
         onloaded=""
         />



I think my question is related to this thread: http://krpano.com/forum/wbb/index.php?page=Thread&threadID=4831
but that thread requires too techincal competences for me to understand. Maybe for my case the solution is simple.



Thanks.

2

Friday, August 26th 2016, 1:39pm

Hi,

add capture="false" to the hotspot.

Best regards,
Klaus

3

Friday, August 26th 2016, 1:41pm

Great! Thank you.