1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
... onstart="delayedcall(1,lookto_chain());" ...
<action name="lookto_chain">
trace('a');
lookto(100,-25,60,smooth(50,50,50),true,true,
trace('a-end');
delayedcall(1,
trace('b');
lookto(200,20,30,smooth(50,50,50),true,true,
trace('b-end');
delayedcall(1,
trace('c');
lookto(50,0,80,smooth(50,50,50),true,true,
trace('c-end');
);
);
);
);
);
</action>
|