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,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;
}
@@ -0,0 +1,3 @@
stop();
// Forbidden
getURL("FSCommand:" add _global.qualifyName(_parent,"OnAdvancedCommandsOpen"),"");
@@ -0,0 +1,5 @@
OnRollOutOpenButton();
gotoAndStop("_closed");
play();
// Forbidden
getURL("FSCommand:" add _global.qualifyName(_parent,"OnAdvancedCommandsClosed"),"");