home *** CD-ROM | disk | FTP | other *** search
/ 404 Jogos / CLJG.iso / Diversos / zombietypocalypse.swf / scripts / game / panel / BlendaIntro.as < prev    next >
Encoding:
Text File  |  2008-09-15  |  664 b   |  32 lines

  1. package game.panel
  2. {
  3.    import flash.display.MovieClip;
  4.    import game.ThisGameManager;
  5.    
  6.    [Embed(source="/_assets/assets.swf", symbol="game.panel.BlendaIntro")]
  7.    public class BlendaIntro extends MovieClip
  8.    {
  9.        
  10.       
  11.       public function BlendaIntro()
  12.       {
  13.          super();
  14.          addFrameScript(11,frame12);
  15.          this.x = 16;
  16.          this.y = -108;
  17.       }
  18.       
  19.       internal function frame12() : *
  20.       {
  21.          stop();
  22.          MovieClip(this.parent).stop();
  23.          goGO();
  24.       }
  25.       
  26.       public function goGO() : void
  27.       {
  28.          ThisGameManager.getInstance().play();
  29.       }
  30.    }
  31. }
  32.