Hi krpano enthusiasts,
I have a question about events. Suppose that in my xml I define a hotspot
|
Source code
|
1
2
3
4
5
|
<hotspot name="spot1"
...
onclick="js(checkclick(1););"
/>
|
and then at the bottom
|
Source code
|
1
|
<events onclick="js(checkclick(0);)" />
|
Now, it seems that if I click on the hotspot, only
checkclick(1) gets called. Is it correct?
On the other hand, if I define a layer with some HTML link and click on the link, only checkclick(0) gets called but not always.. and the conditions under which it gets called are not clear to me.