|
|
Source code |
1 2 3 4 5 6 7 8 |
<action name="showborder"> delayedcall(1.0, set(hotspot[pic_tableau].borderalpha, 1.0)); delayedcall(2.0, set(hotspot[pic_tableau].borderalpha, 0.0)); delayedcall(3.0, showborder() ); </action> |
|
|
Source code |
1 2 3 4 5 6 7 8 9 10 11 12 13 |
<hotspot name="pic_tableau"
style="pichotspot_d"
keep="false"
visible="true" enabled="true" usecontentsize="false" handcursor="true" capture="true" children="true"
zorder="0"
fillcolor ="0xffffff" fillalpha ="0.00" borderwidth ="2.0" bordercolor ="0xe91f32" borderalpha ="1.00"
fillcolorhover="0xffffff" fillalphahover="0.10" borderwidthhover="4.0" bordercolorhover="0xffffff" borderalphahover="0.80"
fadeintime="0.150" fadeouttime="0.300" fadeincurve="1.100" fadeoutcurve="0.700"
onover=""
onhover=""
onout=""
onloaded="set(hospot[pic_tableau].borderalpha, 0.0);"
....
|
The border still visible.
|
|
Source code |
1 |
set(hotspot[pic_tableau].needredraw, true); |

|
|
Source code |
1 2 3 4 5 6 7 8 9 |
<action name="showborder"> set(hotspot[pic_tableau].needredraw, true); delayedcall(1.0, set(hotspot[pic_tableau].borderalpha, 1.0)); delayedcall(2.0, set(hotspot[pic_tableau].borderalpha, 0.0)); delayedcall(3.0, showborder() ); </action> |

This post has been edited 2 times, last edit by "esys" (Mar 22nd 2011, 4:52pm)
|
|
Source code |
1 2 3 4 5 6 7 8 |
<action name="showborder">
showlog();
delayedcall(1.0, set(hotspot[pic_tableau].needredraw, true);set(hotspot[pic_tableau].borderalpha, 1.0););
trace('hotspot[pic_tableau].needredraw = ',hotspot[pic_tableau].needredraw); <!-- Note the result --- FALSE !!! -->
delayedcall(2.0, set(hotspot[pic_tableau].needredraw, true);set(hotspot[pic_tableau].borderalpha, 0.2););
trace('hotspot[pic_tableau].needredraw = ',hotspot[pic_tableau].needredraw); <!-- Note the result --- FALSE !!! -->
delayedcall(3.0, showborder() );
</action>
|
|
|
Source code |
1 2 3 4 5 |
<action name="showborder"> delayedcall(1.0, set(hotspot[pic_tableau].borderalpha, 1.0);updatescreen();); delayedcall(2.0, set(hotspot[pic_tableau].borderalpha, 0.2);updatescreen();); delayedcall(3.0, showborder() ); </action> |
...|
|
Source code |
1 2 3 4 5 6 7 8 9 10 11 12 13 |
INFO: pressed first INFO: pressed first WARNING: loadpano() - busy INFO: pressed first ERROR: looktohotspot() - hotspot "bal_press" not found INFO: error auto_goto[2]: cannot find state 0 in hotspot_flasher ERROR: looktohotspot() - hotspot "super_heat" not found INFO: error auto_goto[2]: cannot find state 0 in hotspot_flasher ERROR: looktohotspot() - hotspot "marker_beacons" not found INFO: error auto_goto[2]: cannot find state 0 in hotspot_flasher ERROR: looktohotspot() - hotspot "radar_altimeter" not found INFO: error auto_goto[2]: cannot find state 0 in hotspot_flasher ERROR: looktohotspot() - hotspot "hsi" not found |
so if I am on mistake, excuse me please
) and perhaps this can do:|
|
Source code |
3234 3235 3236 3237 3238 |
onclick="if (xml.url != interior_high_res.xml,ld_pano(interior_high_res.xml,null,null,null,null,wait(load)););" ....... onclick="if (xml.url != under_nose.xml,ld_pano(under_nose.xml,null,null,null,null,wait(load)););" ....... onclick="if (xml.url != rear_quarter.xml,ld_pano(rear_quarter.xml,null,null,null,null,wait(load)););" |
|
|
Source code |
609 610 611 612 613 614 615 616 617 618 619 620 621 |
<action name="ld_pano"> ....... if (%6 == null, set(action[%0].param_6,null); <!--else-->, set(action[%0].param_6,%6); ); ....... txtadd(action[%0]._queue[0].cmd,'loadpano(%1,',get(action[%0].params),',',get(action[%0].flags),',',get(action[%0].blend),',',get(action[%0].onstrt),',',get(action[%0].param_6),');'); |
...This post has been edited 1 times, last edit by "michel" (Mar 26th 2011, 5:08am)
Quoted
![]()
Source code
1 2 3 4 5 <action name="showborder"> delayedcall(1.0, set(hotspot[pic_tableau].borderalpha, 1.0);updatescreen();); delayedcall(2.0, set(hotspot[pic_tableau].borderalpha, 0.2);updatescreen();); delayedcall(3.0, showborder() ); </action>