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
|
<action name="hide">
tween(plugin[thumbbar].alpha, 0,1);
tween(plugin[thumbbar_image_0].alpha, 0,0.5);
tween(plugin[thumbbar_image_1].alpha, 0,0.5);
tween(plugin[thumbbar_image_2].alpha, 0,0.5);
tween(plugin[thumbbar_image_3].alpha, 0,0.5);
tween(plugin[thumbbar_image_4].alpha, 0,0.5);
tween(plugin[thumbbar_image_5].alpha, 0,0.5);
tween(plugin[thumbbar_image_6].alpha, 0,0.5);
tween(plugin[thumbbar_image_7].alpha, 0,0.5);
tween(plugin[thumbbar_image_8].alpha, 0,0.5);
tween(plugin[thumbbar_image_9].alpha, 0,0.5);
set(plugin[thumbbar_image_0].enabled, false);
set(plugin[thumbbar_image_1].enabled, false);
set(plugin[thumbbar_image_2].enabled, false);
set(plugin[thumbbar_image_3].enabled, false);
set(plugin[thumbbar_image_4].enabled, false);
set(plugin[thumbbar_image_5].enabled, false);
set(plugin[thumbbar_image_6].enabled, false);
set(plugin[thumbbar_image_7].enabled, false);
set(plugin[thumbbar_image_8].enabled, false);
set(plugin[thumbbar_image_9].enabled, false);
</action>
|