first commit
This commit is contained in:
+8
@@ -0,0 +1,8 @@
|
||||
on(press){
|
||||
if(client.selectedTabButton != this)
|
||||
{
|
||||
gotoAndStop("_down");
|
||||
play();
|
||||
}
|
||||
client.OnPressed(this);
|
||||
}
|
||||
+8
@@ -0,0 +1,8 @@
|
||||
on(release){
|
||||
if(client.selectedTabButton != this)
|
||||
{
|
||||
gotoAndStop("_over");
|
||||
play();
|
||||
client.OnClicked(this);
|
||||
}
|
||||
}
|
||||
+8
@@ -0,0 +1,8 @@
|
||||
on(rollOut, dragOut){
|
||||
if(client.selectedTabButton != this)
|
||||
{
|
||||
gotoAndStop("_up");
|
||||
play();
|
||||
}
|
||||
client.OnRollOut(this);
|
||||
}
|
||||
+8
@@ -0,0 +1,8 @@
|
||||
on(rollOver, dragOver){
|
||||
if(client.selectedTabButton != this)
|
||||
{
|
||||
gotoAndStop("_over");
|
||||
play();
|
||||
}
|
||||
client.OnRollOver(this);
|
||||
}
|
||||
Reference in New Issue
Block a user