home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
404 Jogos
/
CLJG.iso
/
Puzzle
/
Easter_Eggs.swf
/
scripts
/
__Packages
/
com
/
novelgames
/
flashgames
/
commonAS2
/
Title.as
< prev
next >
Wrap
Text File
|
2008-09-04
|
755b
|
32 lines
class com.novelgames.flashgames.commonAS2.Title extends MovieClip
{
function Title()
{
super();
this.startButton.onRelease = function()
{
this._parent.startButtonClicked();
};
this.highScoresButton.onRelease = function()
{
this._parent.highScoresButtonClicked();
};
this.moreGamesButton.onRelease = function()
{
this._parent.moreGamesButtonClicked();
};
}
function startButtonClicked()
{
this._parent.gotoInstructionsPage();
}
function highScoresButtonClicked()
{
this._parent.showHighScores();
}
function moreGamesButtonClicked()
{
this.getURL("http://www.fupa.com/","_blank");
}
}