home *** CD-ROM | disk | FTP | other *** search
/ 404 Jogos / CLJG.iso / Puzzle / filler.swf / scripts / mx / effects / effectClasses / PropertyChanges.as < prev    next >
Encoding:
Text File  |  2008-09-02  |  572 b   |  29 lines

  1. package mx.effects.effectClasses
  2. {
  3.    import mx.core.IUIComponent;
  4.    import mx.core.mx_internal;
  5.    
  6.    use namespace mx_internal;
  7.    
  8.    public class PropertyChanges
  9.    {
  10.       
  11.       mx_internal static const VERSION:String = "2.0.1.0";
  12.        
  13.       
  14.       public var start:Object;
  15.       
  16.       public var target:IUIComponent;
  17.       
  18.       public var end:Object;
  19.       
  20.       public function PropertyChanges(param1:IUIComponent)
  21.       {
  22.          end = {};
  23.          start = {};
  24.          super();
  25.          this.target = param1;
  26.       }
  27.    }
  28. }
  29.