home *** CD-ROM | disk | FTP | other *** search
- package mdm
- {
- import flash.display.Sprite;
- import flash.events.Event;
- import flash.events.EventDispatcher;
- import flash.external.ExternalInterface;
-
- public class InternalApplication extends EventDispatcher
- {
- private var fromResizeCallBack:Function;
-
- public function InternalApplication()
- {
- super();
- ExternalInterface.addCallback("onresize",onResize);
- }
-
- public function set onAppExit(param1:Function) : void
- {
- }
-
- public function get path() : String
- {
- return "../";
- }
-
- public function enableExitHandler(param1:Boolean = true) : void
- {
- }
-
- public function sendToBack(param1:Boolean = true) : void
- {
- }
-
- public function restore(param1:Boolean = true) : void
- {
- }
-
- public function switchFullScreen(param1:Boolean) : void
- {
- }
-
- public function init(param1:Sprite, param2:Function = null) : void
- {
- trace("APP init");
- }
-
- public function set onFormResize(param1:Function) : void
- {
- trace("CALLEE " + arguments.callee);
- }
-
- private function onResize() : void
- {
- trace("jsCall");
- dispatchEvent(new Event(Event.RESIZE));
- }
-
- public function bringToFront(param1:Boolean = true) : void
- {
- }
-
- public function exit(param1:String = "", param2:String = "", param3:Boolean = true) : void
- {
- }
- }
- }
-
-