home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
404 Jogos
/
CLJG.iso
/
Puzzle
/
blockix.swf
/
scripts
/
DefineSprite_61_title_screen
/
frame_1
/
DoAction.as
Wrap
Text File
|
2008-09-26
|
441b
|
22 lines
this.onEnterFrame = function()
{
if(_root.game_running && _root.is_pause == false)
{
this._alpha = 0;
}
if(_root.game_running == false && _root.is_pause == false)
{
this._alpha = 100;
this.swapDepths(_root.getNextHighestDepth());
}
};
this.onPress = function()
{
if(_root.game_running == false)
{
_root.lives = 3;
_root.start_game();
trace("clicked");
}
};