Sie sind nicht angemeldet.

21

Mittwoch, 30. September 2009, 22:46

Thanks, but no payment needed here. Michel was the big hero anyway. Just pass on the help when you can. By the way, do you have some code for the balloon markers? I don't need it myself, but I believe someone was looking for it previously. It might have been you though? LOL

Klaus made the cursorposition.swf (to my knowledge)

*g* Jarredja

22

Mittwoch, 30. September 2009, 23:06

Hi andrew22222,

You are well come... I have learned a lot in trying to answer at your request. And I became an hero for a few minutes... *g* *thumbsup* (Such as Jarredja, often ;-) )
Beers for each one of us, and "Santé". *attention*

23

Mittwoch, 30. September 2009, 23:36

Well thanks again to you both and I appreciate your time. I'm certainly going to have a vodka and orange after I've added all these markers ......not during as I've tried that before *wacko*

Quellcode

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
<!--here's the code for the MARKERS AND BALLOONS. It's based on several other scripts that I have come across here and there (which is the only way I can learn all this) and you just need to add the 'fade in' and 'fade out' actions somewhere of your your choiceand assign them to buttons -->

<plugin name="chapel_marker"
            url="images/marker.png"
keep="true"
zorder="40"
parent="map"
align="lefttop"
edge="center"
x="50"
y="217"
alpha="0"
visible="false"
            onover="action(fadein,chapel);"
            onout="action(fadeout,chapel);"
onclick="loadpano(07.xml,null,KEEPPLUGINS,BLEND(1)); set(plugin[hideplan].visible,false); set(plugin[showplan].visible,true); action(hidewholeplan);" 
/>

<plugin name="chapel"
    url="images/chapel.png"
keep="true"
zorder="40"
parent="map"
align="lefttop"
edge="center"
x="60"
y="165"
alpha="0"
visible="false"
/>



Quellcode

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
<!--here's the code for'fade in' and 'fade out'.  -->

<action name="fadeinplan">
    set(plugin[%1].visible,true);
    tween(plugin[%1].alpha,0.85);
</action>

<action name="hidewholeplan">
 action(fadeout,map);
set(plugin[chapel_marker].visible,false);
etc....
            etc....
</action>


<action name="showwholeplan"> 
  action(fadeinplan,map);
action(fadein,chapel_marker);
etc....
            etc....
</action>


All the best,

Andrew