Packagecom.iwobanas.effects.effectClasses
Classpublic class SlideInstance
InheritanceSlideInstance Inheritance mx.effects.effectClasses.TweenEffectInstance
SubclassesSlideDownInstance, SlideLeftInstance, SlideRightInstance, SlideUpInstance

The SlideInstance is a base class for all slide effects instance classes. This class contains most of logic related to slide effect initialization and finalization. Inheriting classes overrides initVisibleRect function to set the visible component bounds and onTweenUpdate function to animate slide in a given direction.



Public Properties
 PropertyDefined by
  showTarget : Boolean
Specifies that the target component is becoming visible, true, or invisible, false.
SlideInstance
Protected Properties
 PropertyDefined by
  _showExplicitlySet : Boolean
SlideInstance
  _showTarget : Boolean = true
SlideInstance
Public Methods
 MethodDefined by
  
SlideInstance(target:Object)
Constructor.
SlideInstance
Property detail
_showExplicitlySetproperty
protected var _showExplicitlySet:Boolean
_showTargetproperty 
protected var _showTarget:Boolean = true
showTargetproperty 
showTarget:Boolean  [read-write]

Specifies that the target component is becoming visible, true, or invisible, false. If this value is not set default value is used depending on triggering event type (see SlideDown effect documentation).

Implementation
    public function get showTarget():Boolean
    public function set showTarget(value:Boolean):void
Constructor detail
SlideInstance()constructor
public function SlideInstance(target:Object)

Constructor.

Parameters
target:Object — The Object to animate with this effect.