home *** CD-ROM | disk | FTP | other *** search
/ 600 Games / 600games.iso / Nave / planetx.swf / scripts / frame_17 / DoAction_15.as < prev    next >
Encoding:
Text File  |  2006-06-13  |  333 b   |  16 lines

  1. function pausebtnpress()
  2. {
  3.    if(_root.state == "playing")
  4.    {
  5.       _root.state = "paused";
  6.       attachMovie("paused_clip","tellPlayer",9);
  7.       tellPlayer._x = 320;
  8.       tellPlayer._y = 240;
  9.    }
  10.    else if(_root.state == "paused")
  11.    {
  12.       removeMovieClip("tellPlayer");
  13.       _root.state = "playing";
  14.    }
  15. }
  16.