first commit
This commit is contained in:
BIN
Binary file not shown.
|
After Width: | Height: | Size: 88 B |
+4
@@ -0,0 +1,4 @@
|
||||
on(press){
|
||||
gotoAndStop("_down");
|
||||
play();
|
||||
}
|
||||
+6
@@ -0,0 +1,6 @@
|
||||
on(release){
|
||||
gotoAndStop("_over");
|
||||
play();
|
||||
// Forbidden
|
||||
getURL("FSCommand:" add qualifyName(_parent._parent,"OnExecuteClicked"),"");
|
||||
}
|
||||
+4
@@ -0,0 +1,4 @@
|
||||
on(rollOut){
|
||||
gotoAndStop("_up");
|
||||
play();
|
||||
}
|
||||
+4
@@ -0,0 +1,4 @@
|
||||
on(rollOver){
|
||||
gotoAndStop("_over");
|
||||
play();
|
||||
}
|
||||
+3
@@ -0,0 +1,3 @@
|
||||
onClipEvent(load){
|
||||
myText = "$" + qualifyName(_parent._parent._parent,"ExecuteButton");
|
||||
}
|
||||
+1
@@ -0,0 +1 @@
|
||||
stop();
|
||||
+1
@@ -0,0 +1 @@
|
||||
stop();
|
||||
+1
@@ -0,0 +1 @@
|
||||
stop();
|
||||
+3
@@ -0,0 +1,3 @@
|
||||
onClipEvent(load){
|
||||
myText = "$" + qualifyName(_parent._parent,"Description") + "&dropshadow";
|
||||
}
|
||||
+3
@@ -0,0 +1,3 @@
|
||||
onClipEvent(load){
|
||||
myText = "$" + qualifyName(_parent._parent,"Title") + "&dropshadow";
|
||||
}
|
||||
@@ -0,0 +1,47 @@
|
||||
function Move(x, y)
|
||||
{
|
||||
if(x < -5000)
|
||||
{
|
||||
x = -5000;
|
||||
}
|
||||
else if(x > 5000)
|
||||
{
|
||||
x = 5000;
|
||||
}
|
||||
if(y < -5000)
|
||||
{
|
||||
y = -5000;
|
||||
}
|
||||
else if(y > 5000)
|
||||
{
|
||||
y = 5000;
|
||||
}
|
||||
var _loc6_ = _root;
|
||||
var _loc3_ = _parent;
|
||||
while(_loc3_ != _loc6_)
|
||||
{
|
||||
x -= _loc3_._x;
|
||||
y -= _loc3_._y;
|
||||
_loc3_ = _loc3_._parent;
|
||||
}
|
||||
_X = x;
|
||||
_Y = y;
|
||||
}
|
||||
function Close()
|
||||
{
|
||||
gotoAndStop("_close");
|
||||
play();
|
||||
}
|
||||
function onUnload()
|
||||
{
|
||||
delete Move;
|
||||
delete Close;
|
||||
delete onUnload;
|
||||
}
|
||||
if(!initialized)
|
||||
{
|
||||
_parent.OnContentLoaded(this);
|
||||
initialized = true;
|
||||
// Forbidden
|
||||
getURL("FSCommand:" add qualifyName(this,"OnInitialized"),"");
|
||||
}
|
||||
@@ -0,0 +1,3 @@
|
||||
stop();
|
||||
// Forbidden
|
||||
getURL("FSCommand:" add qualifyName(this,"OnClosed"),"");
|
||||
@@ -0,0 +1 @@
|
||||
stop();
|
||||
@@ -0,0 +1 @@
|
||||
Description
|
||||
@@ -0,0 +1 @@
|
||||
Title
|
||||
@@ -0,0 +1 @@
|
||||
EXECUTE
|
||||
Reference in New Issue
Block a user