home *** CD-ROM | disk | FTP | other *** search
/ 600 Games / 600games.iso / Corrida / amazingrace.swf / scripts / DefineSprite_232 / frame_8 / DoAction.as
Encoding:
Text File  |  2006-06-13  |  548 b   |  21 lines

  1. pause_mc.caption = "PAUSE";
  2. next_btn.onRelease = function()
  3. {
  4.    _root.main_mc.gotoAndPlay("replay");
  5. };
  6. menu_btn.onRelease = function()
  7. {
  8.    _root.main_mc.gotoAndStop("intro");
  9. };
  10. prev_btn.onRelease = function()
  11. {
  12.    clearInterval(_global.scoreInterval);
  13.    _global.scoreInterval = null;
  14.    _global.scoreInterval = setInterval(_root.downScore,1000);
  15.    this._parent.gotoAndStop("empty");
  16.    _global.gl_game_info.is_pause = false;
  17. };
  18. text_0_mc.caption = "RESUME";
  19. text_1_mc.caption = "RESTART";
  20. text_2_mc.caption = "MAIN MENU";
  21.