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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
|
<action name="set_hotspots">
action(config_hotspots, hs_1, reception_area, Resistant materials, 335.8, 15.0, 331.7, 0.5);
</action>
<action name="config_hotspots">
addhotspot(%1_hotspot_bg);
set(hotspot[%1_hotspot_bg].url,%HTMLPATH%/files/krpano/textfield.swf);
set(hotspot[%1_hotspot_bg].edge,centerright);
set(hotspot[%1_hotspot_bg].width,60);
set(hotspot[%1_hotspot_bg].height,55);
set(hotspot[%1_hotspot_bg].html,[img src="files/images/hs_logo.png" width="50" height="40"/]);
set(hotspot[%1_hotspot_bg].background,false);
set(hotspot[%1_hotspot_bg].ath,%4);
set(hotspot[%1_hotspot_bg].atv,%5);
set(hotspot[%1_hotspot_bg].zorder,5);
set(hotspot[%1_hotspot_bg].alpha,0.8);
set(hotspot[%1_hotspot_bg].onhover,showtext(Explore %3,hs_style););
set(hotspot[%1_hotspot_bg].onclick,lookto(%6,%7,20,smooth(100,20,50));
loadpano(%HTMLPATH%/files/panos/%2.xml,null,MERGE,BLEND(1));
action(set_hotspots);
);
addhotspot(%1_hotspot);
set(hotspot[%1_hotspot].url,%HTMLPATH%/files/krpano/textfield.swf);
set(hotspot[%1_hotspot].edge,centerleft);
set(hotspot[%1_hotspot].children,false);
set(hotspot[%1_hotspot].width,80);
set(hotspot[%1_hotspot].height,40);
set(hotspot[%1_hotspot].html,[p]%3[/p]);
set(hotspot[%1_hotspot].css,data:hotspot_css);
set(hotspot[%1_hotspot].ath,%4);
set(hotspot[%1_hotspot].atv,%5);
set(hotspot[%1_hotspot].ox,10);
set(hotspot[%1_hotspot].background,true);
set(hotspot[%1_hotspot].backgroundcolor,0x002b50);
set(hotspot[%1_hotspot].bordercolor,0xffffff);
set(hotspot[%1_hotspot].roundedge,5);
set(hotspot[%1_hotspot].borderwidth,1);
set(hotspot[%1_hotspot].wordwrap,false);
set(hotspot[%1_hotspot].autosize,right);
set(hotspot[%1_hotspot].selectable,false);
set(hotspot[%1_hotspot].handcursor,true);
set(hotspot[%1_hotspot].alpha,0.8);
set(hotspot[%1_hotspot].zorder,5);
set(hotspot[%1_hotspot].keep,false);
set(hotspot[%1_hotspot].onclick,lookto(%6,%7,20,smooth(100,20,50));
loadpano(%HTMLPATH%/files/panos/%2.xml,null,MERGE,BLEND(1));
action(set_hotspots);
);
</action>
<textstyle name="hs_style"
font="Arial"
fontsize="12"
bold="true"
italic="true"
background="true"
backgroundcolor="0xd7e1e4"
border="true"
bordercolor="0x002b50"
textcolor="0x002b50"
alpha="1"
blendmode="mormal"
effect=""
origin="cursor"
edge="bottom"
textalign="none"
xoffset="0"
yoffset="-3"
/>
<data name="hotspot_css">
p { color:#ffffff;
font-family:Arial;
font-weight:bold;
font-size:12;
text-align:center;
margin-left:0;
margin-right:0;
}
</data>
|