home *** CD-ROM | disk | FTP | other *** search
- package mx.effects.effectClasses
- {
- import mx.core.IUIComponent;
- import mx.core.mx_internal;
-
- use namespace mx_internal;
-
- public class PropertyChanges
- {
-
- mx_internal static const VERSION:String = "2.0.1.0";
-
-
- public var start:Object;
-
- public var target:IUIComponent;
-
- public var end:Object;
-
- public function PropertyChanges(param1:IUIComponent)
- {
- end = {};
- start = {};
- super();
- this.target = param1;
- }
- }
- }
-