1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
<action autorun="onstart">
showlog();
set(bbc,'');
for(set(i,0), i LT hotspot.count, inc(i),
txtadd('bbc',
'<',
'hotspot name="',get(hotspot[get(i)].name),'" ',
'ath="',get(hotspot[get(i)].ath),'" ',
'atv="',get(hotspot[get(i)].atv),'" ',
'style="',get(hotspot[get(i)].name),'" ',
'/',
'>'
);
trace(get(bbc));
);
</action>
|