home *** CD-ROM | disk | FTP | other *** search
/ 404 Jogos / CLJG.iso / Aventura / aether.swf / scripts / Foreground3.as < prev    next >
Text File  |  2008-09-11  |  367b  |  23 lines

  1. package
  2. {
  3.    import flash.display.MovieClip;
  4.    
  5.    public dynamic class Foreground3 extends MovieClip
  6.    {
  7.        
  8.       
  9.       public var planet:MovieClip;
  10.       
  11.       public function Foreground3()
  12.       {
  13.          super();
  14.          addFrameScript(0,frame1);
  15.       }
  16.       
  17.       function frame1() : *
  18.       {
  19.          stop();
  20.       }
  21.    }
  22. }
  23.