home *** CD-ROM | disk | FTP | other *** search
- package classes.dispatchers
- {
- import flash.events.Event;
- import flash.events.EventDispatcher;
- import flash.events.IEventDispatcher;
-
- public class LoadingComplete extends EventDispatcher
- {
-
- public static const LOADING_COMPLETE:String = "LoadingComplete";
-
-
- public function LoadingComplete(param1:IEventDispatcher = null)
- {
- super(param1);
- }
-
- public function loadingComplete() : void
- {
- this.onLoadingComplete();
- }
-
- private function onLoadingComplete() : void
- {
- dispatchEvent(new Event(LoadingComplete.LOADING_COMPLETE));
- }
- }
- }
-