hehe we all are..
i suppose your 'startup' action in the tour.xml looks like:
|
Source code
|
1
2
3
4
|
<action name="startup">
if(startscene === null, copy(startscene,scene[0].name));
loadscene(get(startscene), null, MERGE);
</action>
|
add this line:
skin_hideskin();
so your startup action looks like:
|
Source code
|
1
2
3
4
5
|
<action name="startup">
skin_hideskin();
if(startscene === null, copy(startscene,scene[0].name));
loadscene(get(startscene), null, MERGE);
</action>
|
off course there are other ways to do this but i think the should work..
hope it helps,
Tuur