home *** CD-ROM | disk | FTP | other *** search
- pause_mc.caption = "PAUSE";
- next_btn.onRelease = function()
- {
- _root.main_mc.gotoAndPlay("replay");
- };
- menu_btn.onRelease = function()
- {
- _root.main_mc.gotoAndStop("intro");
- };
- prev_btn.onRelease = function()
- {
- clearInterval(_global.scoreInterval);
- _global.scoreInterval = null;
- _global.scoreInterval = setInterval(_root.downScore,1000);
- this._parent.gotoAndStop("empty");
- _global.gl_game_info.is_pause = false;
- };
- text_0_mc.caption = "RESUME";
- text_1_mc.caption = "RESTART";
- text_2_mc.caption = "MAIN MENU";
-