| Class | Description |
| AutoAlphaPlugin |
Tweening "autoAlpha" is exactly the same as tweening an object's "alpha" except that it ensures
that the object's "visible" property is true until autoAlpha reaches zero at which point it will
toggle the "visible" property to false. |
| BevelFilterPlugin |
Tweens a BevelFilter. |
| BezierPlugin |
Bezier tweening allows you to tween in a non-linear way. |
| BezierThroughPlugin |
Identical to bezier except that instead of defining bezier control point values, you
define points through which the bezier values should move. |
| BlurFilterPlugin |
Tweens a BlurFilter. |
| ColorMatrixFilterPlugin |
ColorMatrixFilter tweening offers an easy way to tween a DisplayObject's saturation, hue, contrast,
brightness, and colorization. |
| ColorTransformPlugin |
Ever wanted to tween ColorTransform properties of a DisplayObject to do advanced effects like overexposing, altering
the brightness or setting the percent/amount of tint? Or maybe tween individual ColorTransform
properties like redMultiplier, redOffset, blueMultiplier, blueOffset, etc. |
| DropShadowFilterPlugin |
Tweens a DropShadowFilter. |
| DynamicPropsPlugin |
If you'd like to tween something to a destination value that may change at any time,
DynamicPropsPlugin allows you to simply associate a function with a property so that
every time the tween is updated, it calls that function to get the new destination value
for the associated property. |
| EndArrayPlugin |
Tweens numbers in an Array. |
| FilterPlugin |
Base class for all filter plugins (like blurFilter, colorMatrixFilter, glowFilter, etc.). |
| FrameLabelPlugin |
Tweens a MovieClip to a particular frame label. |
| FramePlugin |
Tweens a MovieClip to a particular frame number. |
| GlowFilterPlugin |
Tweens a GlowFilter. |
| HexColorsPlugin |
Although hex colors are technically numbers, if you try to tween them conventionally,
you'll notice that they don't tween smoothly. |
| MotionBlurPlugin |
MotionBlurPlugin provides an easy way to apply a directional blur to a DisplayObject based on its velocity
and angle of movement in 2D (x/y). |
| Physics2DPlugin |
Provides simple physics functionality for tweening a DisplayObject's x and y coordinates based on a
combination of velocity, angle, gravity, acceleration, accelerationAngle, and/or friction. |
| PhysicsPropsPlugin |
Sometimes you want to tween a property (or several) but you don't have a specific end value in mind - instead,
you'd rather describe the movement in terms of physics concepts, like velocity, acceleration,
and/or friction. |
| QuaternionsPlugin |
Performs SLERP interpolation between 2 Quaternions. |
| RemoveTintPlugin |
Removes the tint of a DisplayObject over time. |
| RoundPropsPlugin |
If you'd like the inbetween values in a tween to always get rounded to the nearest integer, use the roundProps
special property. |
| ScalePlugin |
ScalePlugin combines scaleX and scaleY into one "scale" property. |
| ScrollRectPlugin |
Tweens the scrollRect property of a DisplayObject. |
| SetActualSizePlugin |
Some components require resizing with setActualSize() instead of standard tweens of width/height in
order to scale properly. |
| SetSizePlugin |
Some components require resizing with setSize() instead of standard tweens of width/height in
order to scale properly. |
| ShortRotationPlugin |
To tween any rotation property of the target object in the shortest direction, use "shortRotation"
For example, if myObject.rotation is currently 170 degrees and you want to tween it to -170 degrees,
a normal rotation tween would travel a total of 340 degrees in the counter-clockwise direction,
but if you use shortRotation, it would travel 20 degrees in the clockwise direction instead. |
| TintPlugin |
To change a DisplayObject's tint/color, set this to the hex value of the tint you'd like
to end up at (or begin at if you're using TweenMax.from() ). |
| TransformAroundCenterPlugin |
Normally, all transformations (scale, rotation, and position) are based on the DisplayObject's registration
point (most often its upper left corner), but TransformAroundCenter allows you to make the transformations
occur around the DisplayObject's center. |
| TransformAroundPointPlugin |
Normally, all transformations (scale, rotation, and position) are based on the DisplayObject's registration
point (most often its upper left corner), but TransformAroundPoint allows you to define ANY point around which
transformations will occur during the tween. |
| TransformMatrixPlugin |
TransformMatrixPlugin allows you to tween a DisplayObject's transform.matrix values directly
(a, b, c, d, tx, and ty ) or use common properties like x, y, scaleX, scaleY, skewX, skewY, and rotation . |
| TweenPlugin |
TweenPlugin is the base class for all TweenLite/TweenMax plugins. |
| VisiblePlugin |
Toggles the visibility at the end of a tween. |
| VolumePlugin |
Tweens the volume of an object with a soundTransform property (MovieClip/SoundChannel/NetStream, etc.). |