home *** CD-ROM | disk | FTP | other *** search
- class manage.CommonManage
- {
- function CommonManage()
- {
- }
- static function startGame()
- {
- if(_root.game.isIn == true)
- {
- Fade.start();
- if(_root.game.isSelectLevel == false)
- {
- _root.game.gotoAndStop("gamestart");
- }
- else
- {
- _root.game.gotoAndStop("selectlevel");
- }
- }
- else
- {
- Fade.start();
- _root.game.gotoAndStop("Instructions");
- }
- }
- static function pressInSkip()
- {
- Fade.start();
- if(_root.game.isSelectLevel == false)
- {
- _root.game.gotoAndStop("gamestart");
- }
- else
- {
- _root.game.gotoAndStop("selectlevel");
- }
- }
- static function pressIn()
- {
- Fade.start();
- _root.game.gotoAndStop("Instructions");
- }
- static function pressDown()
- {
- getUrl("http://www.ifungames.com", "_blank");
- }
- static function pressAdd()
- {
- getUrl("http://www.freeworldgroup.com/koalafiles.htm", "_blank");
- }
- static function pressMore()
- {
- getUrl("http://www.freeworldgroup.com/", "_blank");
- }
- static function pressMainMenu()
- {
- Fade.start();
- _root.game.gotoAndStop("mainmenu");
- }
- static function viewHighscore()
- {
- getURL("http://www.freeworldgroup.com/score/index.asp?game=" + manage.GameManage.gameName,"_blank");
- }
- }
-