home *** CD-ROM | disk | FTP | other *** search
/ 404 Jogos / CLJG.iso / Diversos / beauty_resort.swf / scripts / classes / basic / Events / TFEvent.as
Encoding:
Text File  |  2008-09-04  |  3.7 KB  |  99 lines

  1. package classes.basic.Events
  2. {
  3.    public class TFEvent
  4.    {
  5.       
  6.       public static const EVENT_PROFILE_LOAD:String = "EVENT_PROFILE_LOAD";
  7.       
  8.       public static const EVENT_DISABLE:String = "EVENT_DISABLE";
  9.       
  10.       public static const EVENT_OPTION_MUSICDECREASE:String = "EVENT_OPTION_MUSICDECREASE";
  11.       
  12.       public static const EVENT_PROFILE_BACK:String = "EVENT_PROFILE_BACK";
  13.       
  14.       public static const EVENT_OFF:String = "EVENT_OFF";
  15.       
  16.       public static const EVENT_PROFILE_DELETE:String = "EVENT_PROFILE_DELETE";
  17.       
  18.       public static const EVENT_OPTION_WINDOWMODE:String = "EVENT_OPTION_WINDOWMODE";
  19.       
  20.       public static const EVENT_DIALOG_NO:String = "EVENT_DIALOG_NO";
  21.       
  22.       public static const EVENT_MOUSEUP:String = "EVENT_MOUSEUP";
  23.       
  24.       public static const EVENT_OPTION_SFXDECREASE:String = "EVENT_OPTION_SFXDECREASE";
  25.       
  26.       public static const EVENT_OPTION_QUALITYDECREASE:String = "EVENT_OPTION_QUALITYDECREASE";
  27.       
  28.       public static const EVENT_PROFILE_DUPLICATEOK:String = "EVENT_PROFILE_DUPLICATEOK";
  29.       
  30.       public static const EVENT_STOP:String = "EVENT_STOP";
  31.       
  32.       public static const EVENT_OPTION_MUSICINCREASE:String = "EVENT_OPTION_MUSICINCREASE";
  33.       
  34.       public static const EVENT_MOUSEOUT:String = "EVENT_MOUSEOUT";
  35.       
  36.       public static const EVENT_INIT:String = "EVENT_INIT";
  37.       
  38.       public static const EVENT_LPAJSTART:String = "EVENT_LPAJSTART";
  39.       
  40.       public static const EVENT_LPAJEND:String = "EVENT_LPAJEND";
  41.       
  42.       public static const EVENT_MOUSEDOWN:String = "EVENT_MOUSEDOWN";
  43.       
  44.       public static const EVENT_OPTION_QUALITYINCREASE:String = "EVENT_OPTION_QUALITYINCREASE";
  45.       
  46.       public static const EVENT_FADEOUTEND:String = "EVENT_FADEOUTEND";
  47.       
  48.       public static const EVENT_PROFILE_CONFIRMDELETEYES:String = "EVENT_PROFILE_CONFIRMDELETEYES";
  49.       
  50.       public static const EVENT_OPTION_SFXINCREASE:String = "EVENT_OPTION_SFXINCREASE";
  51.       
  52.       public static const EVENT_FADEINBEGIN:String = "EVENT_FADEINBEGIN";
  53.       
  54.       public static const EVENT_PROFILE_DUPLICATE:String = "EVENT_PROFILE_DUPLICATE";
  55.       
  56.       public static const EVENT_OPTION_SAVE:String = "EVENT_OPTION_SAVE";
  57.       
  58.       public static const EVENT_DIALOG_YES:String = "EVENT_DIALOG_YES";
  59.       
  60.       public static const EVENT_MOUSEMOVE:String = "EVENT_MOUSEMOVE";
  61.       
  62.       public static const EVENT_ON:String = "EVENT_ON";
  63.       
  64.       public static const EVENT_MOUSEOVER:String = "EVENT_MOUSEOVER";
  65.       
  66.       public static const EVENT_PROFILE_CONFIRMDELETENO:String = "EVENT_PROFILE_CONFIRMDELETENO";
  67.       
  68.       public static const EVENT_DIALOG_OK:String = "EVENT_DIALOG_OK";
  69.       
  70.       public static const EVENT_PROFILE_CREATE:String = "EVENT_PROFILE_CREATE";
  71.       
  72.       public static const EVENT_MOUSECLICK:String = "EVENT_MOUSECLICK";
  73.       
  74.       public static const EVENT_FADEOUTBEGIN:String = "EVENT_FADEOUTBEGIN";
  75.       
  76.       public static const EVENT_ENABLE:String = "EVENT_ENABLE";
  77.       
  78.       public static const EVENT_LPAJAPEX:String = "EVENT_LPAJAPEX";
  79.       
  80.       public static const EVENT_FADEINEND:String = "EVENT_FADEINEND";
  81.       
  82.       public static const EVENT_PROFILE_INPUT:String = "EVENT_PROFILE_INPUT";
  83.       
  84.       public static const EVENT_OPTION_CANCEL:String = "EVENT_OPTION_CANCEL";
  85.        
  86.       
  87.       public var transport:Object;
  88.       
  89.       public var event:String;
  90.       
  91.       public function TFEvent(param1:String, param2:Object)
  92.       {
  93.          super();
  94.          this.event = param1;
  95.          this.transport = param2;
  96.       }
  97.    }
  98. }
  99.