home *** CD-ROM | disk | FTP | other *** search
/ 600 Games / 600games.iso / Acao / escape.swf / scripts / DefineSprite_214 / frame_23 / DoAction.as
Encoding:
Text File  |  2005-08-23  |  253 b   |  13 lines

  1. this.stop();
  2. laser_cnt = 15 + Math.floor(Math.random() * 10);
  3. _root.mySound.attachSound("s_laser.wav");
  4. _root.mySound.start([0,1]);
  5. this.onEnterFrame = function()
  6. {
  7.    laser_cnt -= 1;
  8.    if(laser_cnt < 0)
  9.    {
  10.       gotoAndStop(27);
  11.    }
  12. };
  13.