first commit
This commit is contained in:
+35
@@ -0,0 +1,35 @@
|
||||
function OnOpenButtonClicked()
|
||||
{
|
||||
// Forbidden
|
||||
getURL("FSCommand:" add _global.qualifyName(_parent,"OnOpenAdvancedCommandsClicked"),"");
|
||||
}
|
||||
function OnRollOverOpenButton()
|
||||
{
|
||||
if(!mouseOverOpenButton)
|
||||
{
|
||||
mouseOverOpenButton = true;
|
||||
// Forbidden
|
||||
getURL("FSCommand:" add _global.qualifyName(_parent,"OnRollOverOpenAdvancedCommandsButton"),"");
|
||||
}
|
||||
}
|
||||
function OnRollOutOpenButton()
|
||||
{
|
||||
if(mouseOverOpenButton)
|
||||
{
|
||||
mouseOverOpenButton = false;
|
||||
// Forbidden
|
||||
getURL("FSCommand:" add _global.qualifyName(_parent,"OnRollOutOpenAdvancedCommandsButton"),"");
|
||||
}
|
||||
}
|
||||
function onUnload()
|
||||
{
|
||||
delete OnOpenButtonClicked;
|
||||
delete OnRollOverOpenButton;
|
||||
delete OnRollOutOpenButton;
|
||||
delete onUnload;
|
||||
}
|
||||
if(!initialized)
|
||||
{
|
||||
mouseOverOpenButton = false;
|
||||
initialized = true;
|
||||
}
|
||||
+1
@@ -0,0 +1 @@
|
||||
stop();
|
||||
+3
@@ -0,0 +1,3 @@
|
||||
stop();
|
||||
// Forbidden
|
||||
getURL("FSCommand:" add _global.qualifyName(_parent,"OnAdvancedCommandsOpen"),"");
|
||||
+1
@@ -0,0 +1 @@
|
||||
OnRollOutOpenButton();
|
||||
+5
@@ -0,0 +1,5 @@
|
||||
OnRollOutOpenButton();
|
||||
gotoAndStop("_closed");
|
||||
play();
|
||||
// Forbidden
|
||||
getURL("FSCommand:" add _global.qualifyName(_parent,"OnAdvancedCommandsClosed"),"");
|
||||
Reference in New Issue
Block a user