home *** CD-ROM | disk | FTP | other *** search
/ 404 Jogos / CLJG.iso / Diversos / Beez.swf / scripts / Balance2.as < prev    next >
Encoding:
Text File  |  2008-09-03  |  438 b   |  22 lines

  1. package
  2. {
  3.    import flash.display.Sprite;
  4.    import flash.events.Event;
  5.    
  6.    public class Balance2 extends Sprite
  7.    {
  8.        
  9.       
  10.       public function Balance2()
  11.       {
  12.          super();
  13.          addEventListener(Event.ADDED_TO_STAGE,addedHandler);
  14.       }
  15.       
  16.       private function addedHandler(e:Event) : void
  17.       {
  18.          ApplicationFacade.getInstance().startup({"container":this});
  19.       }
  20.    }
  21. }
  22.