├── .gitignore ├── README.md ├── bower.json ├── changelog.txt └── src └── com └── greensock ├── TimelineLite.as ├── TimelineMax.as ├── TweenAlign.as ├── TweenLite.as ├── TweenMax.as ├── TweenNano.as ├── core ├── Animation.as └── SimpleTimeline.as ├── easing ├── Back.as ├── BackIn.as ├── BackInOut.as ├── BackOut.as ├── Bounce.as ├── BounceIn.as ├── BounceInOut.as ├── BounceOut.as ├── Circ.as ├── CircIn.as ├── CircInOut.as ├── CircOut.as ├── Cubic.as ├── Ease.as ├── EaseLookup.as ├── Elastic.as ├── ElasticIn.as ├── ElasticInOut.as ├── ElasticOut.as ├── Expo.as ├── ExpoIn.as ├── ExpoInOut.as ├── ExpoOut.as ├── Linear.as ├── Power0.as ├── Power1.as ├── Power2.as ├── Power3.as ├── Power4.as ├── Quad.as ├── Quart.as ├── Quint.as ├── RoughEase.as ├── Sine.as ├── SineIn.as ├── SineInOut.as ├── SineOut.as ├── SlowMo.as ├── SteppedEase.as ├── Strong.as └── core │ └── EasePoint.as ├── events ├── Event.as └── EventDispatcher.as └── plugins ├── AutoAlphaPlugin.as ├── BevelFilterPlugin.as ├── BezierPlugin.as ├── BezierThroughPlugin.as ├── BlurFilterPlugin.as ├── CacheAsBitmapPlugin.as ├── ColorMatrixFilterPlugin.as ├── ColorTransformPlugin.as ├── DirectionalRotationPlugin.as ├── DropShadowFilterPlugin.as ├── EndArrayPlugin.as ├── FilterPlugin.as ├── FrameBackwardPlugin.as ├── FrameForwardPlugin.as ├── FrameLabelPlugin.as ├── FramePlugin.as ├── GlowFilterPlugin.as ├── HexColorsPlugin.as ├── OnChangeRatioPlugin.as ├── Positions2DPlugin.as ├── QuaternionsPlugin.as ├── RemoveTintPlugin.as ├── RoundPropsPlugin.as ├── ScalePlugin.as ├── ScrollRectPlugin.as ├── SetSizePlugin.as ├── ShortRotationPlugin.as ├── TintPlugin.as ├── TransformMatrixPlugin.as ├── TweenPlugin.as ├── VisiblePlugin.as ├── VolumePlugin.as └── core └── Segment.as /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greensock/GreenSock-AS2/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greensock/GreenSock-AS2/HEAD/README.md -------------------------------------------------------------------------------- /bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greensock/GreenSock-AS2/HEAD/bower.json -------------------------------------------------------------------------------- /changelog.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greensock/GreenSock-AS2/HEAD/changelog.txt -------------------------------------------------------------------------------- /src/com/greensock/TimelineLite.as: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greensock/GreenSock-AS2/HEAD/src/com/greensock/TimelineLite.as -------------------------------------------------------------------------------- /src/com/greensock/TimelineMax.as: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greensock/GreenSock-AS2/HEAD/src/com/greensock/TimelineMax.as -------------------------------------------------------------------------------- /src/com/greensock/TweenAlign.as: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greensock/GreenSock-AS2/HEAD/src/com/greensock/TweenAlign.as -------------------------------------------------------------------------------- /src/com/greensock/TweenLite.as: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greensock/GreenSock-AS2/HEAD/src/com/greensock/TweenLite.as -------------------------------------------------------------------------------- /src/com/greensock/TweenMax.as: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greensock/GreenSock-AS2/HEAD/src/com/greensock/TweenMax.as -------------------------------------------------------------------------------- /src/com/greensock/TweenNano.as: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greensock/GreenSock-AS2/HEAD/src/com/greensock/TweenNano.as -------------------------------------------------------------------------------- /src/com/greensock/core/Animation.as: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greensock/GreenSock-AS2/HEAD/src/com/greensock/core/Animation.as -------------------------------------------------------------------------------- /src/com/greensock/core/SimpleTimeline.as: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greensock/GreenSock-AS2/HEAD/src/com/greensock/core/SimpleTimeline.as -------------------------------------------------------------------------------- /src/com/greensock/easing/Back.as: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greensock/GreenSock-AS2/HEAD/src/com/greensock/easing/Back.as -------------------------------------------------------------------------------- /src/com/greensock/easing/BackIn.as: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greensock/GreenSock-AS2/HEAD/src/com/greensock/easing/BackIn.as -------------------------------------------------------------------------------- /src/com/greensock/easing/BackInOut.as: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greensock/GreenSock-AS2/HEAD/src/com/greensock/easing/BackInOut.as -------------------------------------------------------------------------------- /src/com/greensock/easing/BackOut.as: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greensock/GreenSock-AS2/HEAD/src/com/greensock/easing/BackOut.as -------------------------------------------------------------------------------- /src/com/greensock/easing/Bounce.as: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greensock/GreenSock-AS2/HEAD/src/com/greensock/easing/Bounce.as -------------------------------------------------------------------------------- /src/com/greensock/easing/BounceIn.as: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greensock/GreenSock-AS2/HEAD/src/com/greensock/easing/BounceIn.as -------------------------------------------------------------------------------- /src/com/greensock/easing/BounceInOut.as: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greensock/GreenSock-AS2/HEAD/src/com/greensock/easing/BounceInOut.as -------------------------------------------------------------------------------- /src/com/greensock/easing/BounceOut.as: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greensock/GreenSock-AS2/HEAD/src/com/greensock/easing/BounceOut.as -------------------------------------------------------------------------------- /src/com/greensock/easing/Circ.as: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greensock/GreenSock-AS2/HEAD/src/com/greensock/easing/Circ.as -------------------------------------------------------------------------------- /src/com/greensock/easing/CircIn.as: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greensock/GreenSock-AS2/HEAD/src/com/greensock/easing/CircIn.as -------------------------------------------------------------------------------- /src/com/greensock/easing/CircInOut.as: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greensock/GreenSock-AS2/HEAD/src/com/greensock/easing/CircInOut.as -------------------------------------------------------------------------------- /src/com/greensock/easing/CircOut.as: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greensock/GreenSock-AS2/HEAD/src/com/greensock/easing/CircOut.as -------------------------------------------------------------------------------- /src/com/greensock/easing/Cubic.as: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greensock/GreenSock-AS2/HEAD/src/com/greensock/easing/Cubic.as -------------------------------------------------------------------------------- /src/com/greensock/easing/Ease.as: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greensock/GreenSock-AS2/HEAD/src/com/greensock/easing/Ease.as -------------------------------------------------------------------------------- /src/com/greensock/easing/EaseLookup.as: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greensock/GreenSock-AS2/HEAD/src/com/greensock/easing/EaseLookup.as -------------------------------------------------------------------------------- /src/com/greensock/easing/Elastic.as: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greensock/GreenSock-AS2/HEAD/src/com/greensock/easing/Elastic.as -------------------------------------------------------------------------------- /src/com/greensock/easing/ElasticIn.as: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greensock/GreenSock-AS2/HEAD/src/com/greensock/easing/ElasticIn.as -------------------------------------------------------------------------------- /src/com/greensock/easing/ElasticInOut.as: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greensock/GreenSock-AS2/HEAD/src/com/greensock/easing/ElasticInOut.as -------------------------------------------------------------------------------- /src/com/greensock/easing/ElasticOut.as: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greensock/GreenSock-AS2/HEAD/src/com/greensock/easing/ElasticOut.as -------------------------------------------------------------------------------- /src/com/greensock/easing/Expo.as: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greensock/GreenSock-AS2/HEAD/src/com/greensock/easing/Expo.as -------------------------------------------------------------------------------- /src/com/greensock/easing/ExpoIn.as: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greensock/GreenSock-AS2/HEAD/src/com/greensock/easing/ExpoIn.as -------------------------------------------------------------------------------- /src/com/greensock/easing/ExpoInOut.as: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greensock/GreenSock-AS2/HEAD/src/com/greensock/easing/ExpoInOut.as -------------------------------------------------------------------------------- /src/com/greensock/easing/ExpoOut.as: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greensock/GreenSock-AS2/HEAD/src/com/greensock/easing/ExpoOut.as -------------------------------------------------------------------------------- /src/com/greensock/easing/Linear.as: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greensock/GreenSock-AS2/HEAD/src/com/greensock/easing/Linear.as -------------------------------------------------------------------------------- /src/com/greensock/easing/Power0.as: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greensock/GreenSock-AS2/HEAD/src/com/greensock/easing/Power0.as -------------------------------------------------------------------------------- /src/com/greensock/easing/Power1.as: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greensock/GreenSock-AS2/HEAD/src/com/greensock/easing/Power1.as -------------------------------------------------------------------------------- /src/com/greensock/easing/Power2.as: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greensock/GreenSock-AS2/HEAD/src/com/greensock/easing/Power2.as -------------------------------------------------------------------------------- /src/com/greensock/easing/Power3.as: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greensock/GreenSock-AS2/HEAD/src/com/greensock/easing/Power3.as -------------------------------------------------------------------------------- /src/com/greensock/easing/Power4.as: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greensock/GreenSock-AS2/HEAD/src/com/greensock/easing/Power4.as -------------------------------------------------------------------------------- /src/com/greensock/easing/Quad.as: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greensock/GreenSock-AS2/HEAD/src/com/greensock/easing/Quad.as -------------------------------------------------------------------------------- /src/com/greensock/easing/Quart.as: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greensock/GreenSock-AS2/HEAD/src/com/greensock/easing/Quart.as -------------------------------------------------------------------------------- /src/com/greensock/easing/Quint.as: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greensock/GreenSock-AS2/HEAD/src/com/greensock/easing/Quint.as -------------------------------------------------------------------------------- /src/com/greensock/easing/RoughEase.as: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greensock/GreenSock-AS2/HEAD/src/com/greensock/easing/RoughEase.as -------------------------------------------------------------------------------- /src/com/greensock/easing/Sine.as: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greensock/GreenSock-AS2/HEAD/src/com/greensock/easing/Sine.as -------------------------------------------------------------------------------- /src/com/greensock/easing/SineIn.as: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greensock/GreenSock-AS2/HEAD/src/com/greensock/easing/SineIn.as -------------------------------------------------------------------------------- /src/com/greensock/easing/SineInOut.as: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greensock/GreenSock-AS2/HEAD/src/com/greensock/easing/SineInOut.as -------------------------------------------------------------------------------- /src/com/greensock/easing/SineOut.as: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greensock/GreenSock-AS2/HEAD/src/com/greensock/easing/SineOut.as -------------------------------------------------------------------------------- /src/com/greensock/easing/SlowMo.as: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greensock/GreenSock-AS2/HEAD/src/com/greensock/easing/SlowMo.as -------------------------------------------------------------------------------- /src/com/greensock/easing/SteppedEase.as: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greensock/GreenSock-AS2/HEAD/src/com/greensock/easing/SteppedEase.as -------------------------------------------------------------------------------- /src/com/greensock/easing/Strong.as: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greensock/GreenSock-AS2/HEAD/src/com/greensock/easing/Strong.as -------------------------------------------------------------------------------- /src/com/greensock/easing/core/EasePoint.as: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greensock/GreenSock-AS2/HEAD/src/com/greensock/easing/core/EasePoint.as -------------------------------------------------------------------------------- /src/com/greensock/events/Event.as: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greensock/GreenSock-AS2/HEAD/src/com/greensock/events/Event.as -------------------------------------------------------------------------------- /src/com/greensock/events/EventDispatcher.as: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greensock/GreenSock-AS2/HEAD/src/com/greensock/events/EventDispatcher.as -------------------------------------------------------------------------------- /src/com/greensock/plugins/AutoAlphaPlugin.as: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greensock/GreenSock-AS2/HEAD/src/com/greensock/plugins/AutoAlphaPlugin.as -------------------------------------------------------------------------------- /src/com/greensock/plugins/BevelFilterPlugin.as: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greensock/GreenSock-AS2/HEAD/src/com/greensock/plugins/BevelFilterPlugin.as -------------------------------------------------------------------------------- /src/com/greensock/plugins/BezierPlugin.as: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greensock/GreenSock-AS2/HEAD/src/com/greensock/plugins/BezierPlugin.as -------------------------------------------------------------------------------- /src/com/greensock/plugins/BezierThroughPlugin.as: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greensock/GreenSock-AS2/HEAD/src/com/greensock/plugins/BezierThroughPlugin.as -------------------------------------------------------------------------------- /src/com/greensock/plugins/BlurFilterPlugin.as: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greensock/GreenSock-AS2/HEAD/src/com/greensock/plugins/BlurFilterPlugin.as -------------------------------------------------------------------------------- /src/com/greensock/plugins/CacheAsBitmapPlugin.as: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greensock/GreenSock-AS2/HEAD/src/com/greensock/plugins/CacheAsBitmapPlugin.as -------------------------------------------------------------------------------- /src/com/greensock/plugins/ColorMatrixFilterPlugin.as: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greensock/GreenSock-AS2/HEAD/src/com/greensock/plugins/ColorMatrixFilterPlugin.as -------------------------------------------------------------------------------- /src/com/greensock/plugins/ColorTransformPlugin.as: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greensock/GreenSock-AS2/HEAD/src/com/greensock/plugins/ColorTransformPlugin.as -------------------------------------------------------------------------------- /src/com/greensock/plugins/DirectionalRotationPlugin.as: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greensock/GreenSock-AS2/HEAD/src/com/greensock/plugins/DirectionalRotationPlugin.as -------------------------------------------------------------------------------- /src/com/greensock/plugins/DropShadowFilterPlugin.as: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greensock/GreenSock-AS2/HEAD/src/com/greensock/plugins/DropShadowFilterPlugin.as -------------------------------------------------------------------------------- /src/com/greensock/plugins/EndArrayPlugin.as: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greensock/GreenSock-AS2/HEAD/src/com/greensock/plugins/EndArrayPlugin.as -------------------------------------------------------------------------------- /src/com/greensock/plugins/FilterPlugin.as: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greensock/GreenSock-AS2/HEAD/src/com/greensock/plugins/FilterPlugin.as -------------------------------------------------------------------------------- /src/com/greensock/plugins/FrameBackwardPlugin.as: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greensock/GreenSock-AS2/HEAD/src/com/greensock/plugins/FrameBackwardPlugin.as -------------------------------------------------------------------------------- /src/com/greensock/plugins/FrameForwardPlugin.as: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greensock/GreenSock-AS2/HEAD/src/com/greensock/plugins/FrameForwardPlugin.as -------------------------------------------------------------------------------- /src/com/greensock/plugins/FrameLabelPlugin.as: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greensock/GreenSock-AS2/HEAD/src/com/greensock/plugins/FrameLabelPlugin.as -------------------------------------------------------------------------------- /src/com/greensock/plugins/FramePlugin.as: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greensock/GreenSock-AS2/HEAD/src/com/greensock/plugins/FramePlugin.as -------------------------------------------------------------------------------- /src/com/greensock/plugins/GlowFilterPlugin.as: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greensock/GreenSock-AS2/HEAD/src/com/greensock/plugins/GlowFilterPlugin.as -------------------------------------------------------------------------------- /src/com/greensock/plugins/HexColorsPlugin.as: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greensock/GreenSock-AS2/HEAD/src/com/greensock/plugins/HexColorsPlugin.as -------------------------------------------------------------------------------- /src/com/greensock/plugins/OnChangeRatioPlugin.as: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greensock/GreenSock-AS2/HEAD/src/com/greensock/plugins/OnChangeRatioPlugin.as -------------------------------------------------------------------------------- /src/com/greensock/plugins/Positions2DPlugin.as: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greensock/GreenSock-AS2/HEAD/src/com/greensock/plugins/Positions2DPlugin.as -------------------------------------------------------------------------------- /src/com/greensock/plugins/QuaternionsPlugin.as: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greensock/GreenSock-AS2/HEAD/src/com/greensock/plugins/QuaternionsPlugin.as -------------------------------------------------------------------------------- /src/com/greensock/plugins/RemoveTintPlugin.as: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greensock/GreenSock-AS2/HEAD/src/com/greensock/plugins/RemoveTintPlugin.as -------------------------------------------------------------------------------- /src/com/greensock/plugins/RoundPropsPlugin.as: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greensock/GreenSock-AS2/HEAD/src/com/greensock/plugins/RoundPropsPlugin.as -------------------------------------------------------------------------------- /src/com/greensock/plugins/ScalePlugin.as: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greensock/GreenSock-AS2/HEAD/src/com/greensock/plugins/ScalePlugin.as -------------------------------------------------------------------------------- /src/com/greensock/plugins/ScrollRectPlugin.as: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greensock/GreenSock-AS2/HEAD/src/com/greensock/plugins/ScrollRectPlugin.as -------------------------------------------------------------------------------- /src/com/greensock/plugins/SetSizePlugin.as: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greensock/GreenSock-AS2/HEAD/src/com/greensock/plugins/SetSizePlugin.as -------------------------------------------------------------------------------- /src/com/greensock/plugins/ShortRotationPlugin.as: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greensock/GreenSock-AS2/HEAD/src/com/greensock/plugins/ShortRotationPlugin.as -------------------------------------------------------------------------------- /src/com/greensock/plugins/TintPlugin.as: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greensock/GreenSock-AS2/HEAD/src/com/greensock/plugins/TintPlugin.as -------------------------------------------------------------------------------- /src/com/greensock/plugins/TransformMatrixPlugin.as: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greensock/GreenSock-AS2/HEAD/src/com/greensock/plugins/TransformMatrixPlugin.as -------------------------------------------------------------------------------- /src/com/greensock/plugins/TweenPlugin.as: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greensock/GreenSock-AS2/HEAD/src/com/greensock/plugins/TweenPlugin.as -------------------------------------------------------------------------------- /src/com/greensock/plugins/VisiblePlugin.as: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greensock/GreenSock-AS2/HEAD/src/com/greensock/plugins/VisiblePlugin.as -------------------------------------------------------------------------------- /src/com/greensock/plugins/VolumePlugin.as: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greensock/GreenSock-AS2/HEAD/src/com/greensock/plugins/VolumePlugin.as -------------------------------------------------------------------------------- /src/com/greensock/plugins/core/Segment.as: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greensock/GreenSock-AS2/HEAD/src/com/greensock/plugins/core/Segment.as --------------------------------------------------------------------------------