|
|
Quellcode |
1 2 3 4 5 6 7 |
<krpano version="1.0.8" onstart="startup(); tween(plugin[presentation].alpha, 1.0, 2.0); <!--background--> tween(plugin[txt_presentation_un].alpha, 1.0, 2.0); delayedcall(15.0, tween(plugin[txt_presentation_un].alpha,0.0,0.5)); delayedcall(15.0, tween(plugin[txt_presentation_deux].alpha,1.0,0.5)); delayedcall(22.0, hide_presentation());"> |
|
|
Quellcode |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 |
onclick="hide_presentation();" <action name="hide_presentation"> set(plugin[presentation].enabled,false); tween(plugin[presentation].alpha,0); tween(plugin[presentation].blur,20); tween(plugin[presentation].textblur,20,,,set(plugin[%1].visible,false)); set(plugin[txt_presentation_un].enabled,false); tween(plugin[txt_presentation_un].alpha,0); tween(plugin[txt_presentation_un].blur,20); tween(plugin[txt_presentation_un].textblur,20,,,set(plugin[%1].visible,false)); set(plugin[txt_presentation_deux].enabled,false); tween(plugin[txt_presentation_deux].alpha,0); tween(plugin[txt_presentation_deux].blur,20); tween(plugin[txt_presentation_deux].textblur,20,,,set(plugin[%1].visible,false)); </action> |
Dieser Beitrag wurde bereits 1 mal editiert, zuletzt von »esys« (31. März 2011, 17:12)
Dieser Beitrag wurde bereits 1 mal editiert, zuletzt von »esys« (1. April 2011, 00:39)
Thanks sachagriffin, but it can't work for my problem because i use the visible and alpha settings for transition between my two plugins.
I solved it by adding a scale set to 0.0 for the second plugin in the action "onclick" of the first one. So the second one stil running but it's not visible.
That's what i found pending something more professional!![]()
By the way, what's the trace function (thought it was in AS3) ?
Thanks everybody.![]()
Steph
as for trace...
WHAT!?
How are you able to get anything done without it without taking hours of watching nothing happen and wondering why not... ??
Zitat
BTW, does anyone have a clue what are the mod and pow math functions?