home *** CD-ROM | disk | FTP | other *** search
- package classes.basic.Events
- {
- public class TFEvent
- {
-
- public static const EVENT_PROFILE_LOAD:String = "EVENT_PROFILE_LOAD";
-
- public static const EVENT_DISABLE:String = "EVENT_DISABLE";
-
- public static const EVENT_OPTION_MUSICDECREASE:String = "EVENT_OPTION_MUSICDECREASE";
-
- public static const EVENT_PROFILE_BACK:String = "EVENT_PROFILE_BACK";
-
- public static const EVENT_OFF:String = "EVENT_OFF";
-
- public static const EVENT_PROFILE_DELETE:String = "EVENT_PROFILE_DELETE";
-
- public static const EVENT_OPTION_WINDOWMODE:String = "EVENT_OPTION_WINDOWMODE";
-
- public static const EVENT_DIALOG_NO:String = "EVENT_DIALOG_NO";
-
- public static const EVENT_MOUSEUP:String = "EVENT_MOUSEUP";
-
- public static const EVENT_OPTION_SFXDECREASE:String = "EVENT_OPTION_SFXDECREASE";
-
- public static const EVENT_OPTION_QUALITYDECREASE:String = "EVENT_OPTION_QUALITYDECREASE";
-
- public static const EVENT_PROFILE_DUPLICATEOK:String = "EVENT_PROFILE_DUPLICATEOK";
-
- public static const EVENT_STOP:String = "EVENT_STOP";
-
- public static const EVENT_OPTION_MUSICINCREASE:String = "EVENT_OPTION_MUSICINCREASE";
-
- public static const EVENT_MOUSEOUT:String = "EVENT_MOUSEOUT";
-
- public static const EVENT_INIT:String = "EVENT_INIT";
-
- public static const EVENT_LPAJSTART:String = "EVENT_LPAJSTART";
-
- public static const EVENT_LPAJEND:String = "EVENT_LPAJEND";
-
- public static const EVENT_MOUSEDOWN:String = "EVENT_MOUSEDOWN";
-
- public static const EVENT_OPTION_QUALITYINCREASE:String = "EVENT_OPTION_QUALITYINCREASE";
-
- public static const EVENT_FADEOUTEND:String = "EVENT_FADEOUTEND";
-
- public static const EVENT_PROFILE_CONFIRMDELETEYES:String = "EVENT_PROFILE_CONFIRMDELETEYES";
-
- public static const EVENT_OPTION_SFXINCREASE:String = "EVENT_OPTION_SFXINCREASE";
-
- public static const EVENT_FADEINBEGIN:String = "EVENT_FADEINBEGIN";
-
- public static const EVENT_PROFILE_DUPLICATE:String = "EVENT_PROFILE_DUPLICATE";
-
- public static const EVENT_OPTION_SAVE:String = "EVENT_OPTION_SAVE";
-
- public static const EVENT_DIALOG_YES:String = "EVENT_DIALOG_YES";
-
- public static const EVENT_MOUSEMOVE:String = "EVENT_MOUSEMOVE";
-
- public static const EVENT_ON:String = "EVENT_ON";
-
- public static const EVENT_MOUSEOVER:String = "EVENT_MOUSEOVER";
-
- public static const EVENT_PROFILE_CONFIRMDELETENO:String = "EVENT_PROFILE_CONFIRMDELETENO";
-
- public static const EVENT_DIALOG_OK:String = "EVENT_DIALOG_OK";
-
- public static const EVENT_PROFILE_CREATE:String = "EVENT_PROFILE_CREATE";
-
- public static const EVENT_MOUSECLICK:String = "EVENT_MOUSECLICK";
-
- public static const EVENT_FADEOUTBEGIN:String = "EVENT_FADEOUTBEGIN";
-
- public static const EVENT_ENABLE:String = "EVENT_ENABLE";
-
- public static const EVENT_LPAJAPEX:String = "EVENT_LPAJAPEX";
-
- public static const EVENT_FADEINEND:String = "EVENT_FADEINEND";
-
- public static const EVENT_PROFILE_INPUT:String = "EVENT_PROFILE_INPUT";
-
- public static const EVENT_OPTION_CANCEL:String = "EVENT_OPTION_CANCEL";
-
-
- public var transport:Object;
-
- public var event:String;
-
- public function TFEvent(param1:String, param2:Object)
- {
- super();
- this.event = param1;
- this.transport = param2;
- }
- }
- }
-