home *** CD-ROM | disk | FTP | other *** search
/ 404 Jogos / CLJG.iso / Aventura / starisland.swf / scripts / DefineSprite_1076 / frame_52 / DoAction.as
Encoding:
Text File  |  2007-12-10  |  352 b   |  18 lines

  1. stop();
  2. this.onEnterFrame = function()
  3. {
  4.    if(Key.isDown(32))
  5.    {
  6.       delete this.onEnterFrame;
  7.       Isfirstlevel = 1;
  8.       this.gotoAndPlay("end");
  9.    }
  10.    if(Isfirst && (Key.isDown(39) || Key.isDown(38)))
  11.    {
  12.       delete this.onEnterFrame;
  13.       trace("right");
  14.       Isfirstlevel = 2;
  15.       this.gotoAndPlay("end");
  16.    }
  17. };
  18.