first commit

This commit is contained in:
2026-06-14 01:40:04 +02:00
commit 5511354783
4787 changed files with 103543 additions and 0 deletions
@@ -0,0 +1,8 @@
on(press){
if(client.selectedTabButton != this)
{
gotoAndStop("_down");
play();
}
client.OnPressed(this);
}
@@ -0,0 +1,8 @@
on(release){
if(client.selectedTabButton != this)
{
gotoAndStop("_over");
play();
client.OnClicked(this);
}
}
@@ -0,0 +1,8 @@
on(rollOut, dragOut){
if(client.selectedTabButton != this)
{
gotoAndStop("_up");
play();
}
client.OnRollOut(this);
}
@@ -0,0 +1,8 @@
on(rollOver, dragOver){
if(client.selectedTabButton != this)
{
gotoAndStop("_over");
play();
}
client.OnRollOver(this);
}