Packagecom.greensock.data
Classpublic dynamic class FilterVars
InheritanceFilterVars Inheritance VarsCore Inheritance flash.utils.Proxy
SubclassesBevelFilterVars, BlurFilterVars, ColorMatrixFilterVars

This class works in conjunction with the TweenLiteVars or TweenMaxVars class to grant strict data typing and code hinting (in most code editors). See the documentation in the TweenLiteVars or TweenMaxVars for more information. Copyright 2010, GreenSock. All rights reserved. This work is subject to the terms in http://www.greensock.com/terms_of_use.html or for corporate Club GreenSock members, the software agreement that was issued with the corporate membership.



Public Properties
 PropertyDefined by
  addFilter : Boolean
To force TweenLite/Max to create a new filter even if there's a filter of the same kind already applied to a DisplayObject, set addFilter to true.
FilterVars
  index : int
To define a particular index number in the target DisplayObject's filters Array for this filter, use index property.
FilterVars
  remove : Boolean
To remove the filter after the tween has completed, set remove to true.
FilterVars
Public Methods
 MethodDefined by
  
FilterVars(remove:Boolean = false, index:int = -1, addFilter:Boolean = false)
FilterVars
Protected Methods
 MethodDefined by
 Inherited
hasProperty(name:*):Boolean
VarsCore
Property detail
addFilterproperty
addFilter:Boolean  [read-write]

To force TweenLite/Max to create a new filter even if there's a filter of the same kind already applied to a DisplayObject, set addFilter to true.

Implementation
    public function get addFilter():Boolean
    public function set addFilter(value:Boolean):void
indexproperty 
index:int  [read-write]

To define a particular index number in the target DisplayObject's filters Array for this filter, use index property.

Implementation
    public function get index():int
    public function set index(value:int):void
removeproperty 
remove:Boolean  [read-write]

To remove the filter after the tween has completed, set remove to true.

Implementation
    public function get remove():Boolean
    public function set remove(value:Boolean):void
Constructor detail
FilterVars()constructor
public function FilterVars(remove:Boolean = false, index:int = -1, addFilter:Boolean = false)Parameters
remove:Boolean (default = false)
 
index:int (default = -1)
 
addFilter:Boolean (default = false)