home *** CD-ROM | disk | FTP | other *** search
- package
- {
- import flash.display.Sprite;
- import flash.events.Event;
-
- public class Balance2 extends Sprite
- {
-
-
- public function Balance2()
- {
- super();
- addEventListener(Event.ADDED_TO_STAGE,addedHandler);
- }
-
- private function addedHandler(e:Event) : void
- {
- ApplicationFacade.getInstance().startup({"container":this});
- }
- }
- }
-