home *** CD-ROM | disk | FTP | other *** search
/ 600 Games / 600games.iso / Acao / batman_cobble.swf / scripts / frame_16 / DoAction_22.as < prev    next >
Encoding:
Text File  |  2006-06-13  |  283 b   |  15 lines

  1. _global.doorOpen = function()
  2. {
  3.    if(this.hitTest(_root.game.player))
  4.    {
  5.       if(this.door._currentframe == 1)
  6.       {
  7.          this.door.gotoAndPlay("open");
  8.       }
  9.    }
  10.    else if(this.door._currentframe == 10)
  11.    {
  12.       this.door.gotoAndPlay("close");
  13.    }
  14. };
  15.