Classes
 ClassDescription
 BevelFilterVars 
 BlurFilterVars 
 ColorMatrixFilterVars 
 ColorTransformVars 
 DropShadowFilterVars 
 FilterVars This class works in conjunction with the TweenLiteVars or TweenMaxVars class to grant strict data typing and code hinting (in most code editors).
 GlowFilterVars 
 TransformAroundCenterVars 
 TransformAroundPointVars 
 TweenLiteVars There are 2 primary benefits of using a TweenLiteVars instance to define your TweenLite variables:
  1. In most code editors, code hinting will be activated which helps remind you which special properties are available in TweenLite
  2. It allows you to code using strict datatyping (although it doesn't force you to).
USAGE:

Instead of TweenLite.to(mc, 1, {x:300, tint:0xFF0000, onComplete:myFunction}), you could use this utility like:

var myVars:TweenLiteVars = new TweenLiteVars();
myVars.addProp("x", 300); // use addProp() to add any property that doesn't already exist in the TweenLiteVars instance.
myVars.tint = 0xFF0000;
myVars.onComplete = myFunction;
TweenLite.to(mc, 1, myVars);

NOTES:
  • This class adds about 13 Kb to your published SWF (including all dependencies).
  • This utility is completely optional.
 TweenMaxVars There are 2 primary benefits of using this utility to define your TweenMax variables:
  1. In most code editors, code hinting will be activated which helps remind you which special properties are available in TweenMax
  2. It allows you to code using strict datatyping (although it doesn't force you to).
 VarsCore VarsCore provides a way to make an object's non-dynamic properties enumerable (only if/when the property is set to a non-default value) which is necessary for many of the vars objects in the GreenSock tweening platform (TweenLiteVars, TweenMaxVars, etc.).