Packagemx.events
Classpublic class TweenEvent
InheritanceTweenEvent Inheritance flash.events.Event

Language Version : ActionScript 3.0
Product Version : Flex 3
Runtime Versions : Flash Player 9, AIR 1.1

Represents event objects that are specific to Flex tween effects. Flex effects dispatch two types of tween events:

See also

mx.effects.TweenEffect
mx.effects.Tween


Public Properties
 PropertyDefined By
  value : Object
For a tweenStart or tweenUpdate event, the value passed to the onTweenUpdate() method; for a tweenEnd event, the value passed to the onTweenEnd() method.
TweenEvent
Public Methods
 MethodDefined By
  
TweenEvent(type:String, bubbles:Boolean = false, cancelable:Boolean = false, value:Object = null)
Constructor.
TweenEvent
Public Constants
 ConstantDefined By
  TWEEN_END : String = tweenEnd
[static] The TweenEvent.TWEEN_END constant defines the value of the event object's type property for a tweenEnd event.
TweenEvent
  TWEEN_START : String = tweenStart
[static] The TweenEvent.TWEEN_START constant defines the value of the event object's type property for a tweenStart event.
TweenEvent
  TWEEN_UPDATE : String = tweenUpdate
[static] The TweenEvent.TWEEN_UPDATE constant defines the value of the event object's type property for a tweenUpdate event.
TweenEvent
Property Detail
valueproperty
public var value:Object

Language Version : ActionScript 3.0
Product Version : Flex 3
Runtime Versions : Flash Player 9, AIR 1.1

For a tweenStart or tweenUpdate event, the value passed to the onTweenUpdate() method; for a tweenEnd event, the value passed to the onTweenEnd() method.

For the exact value of this property, see the instance class for each tween effect.

See also

Constructor Detail
TweenEvent()Constructor
public function TweenEvent(type:String, bubbles:Boolean = false, cancelable:Boolean = false, value:Object = null)

Language Version : ActionScript 3.0
Product Version : Flex 3
Runtime Versions : Flash Player 9, AIR 1.1

Constructor.

Parameters
type:String — The event type; indicates the action that caused the event.
 
bubbles:Boolean (default = false) — Specifies whether the event can bubble up the display list hierarchy.
 
cancelable:Boolean (default = false) — Specifies whether the behavior associated with the event can be prevented.
 
value:Object (default = null) — For a tweenStart or tweenUpdate event, the value passed to the onTweenUpdate() method; for a tweenEnd event, the value passed to the onTweenEnd() method.
Constant Detail
TWEEN_ENDConstant
public static const TWEEN_END:String = tweenEnd

Language Version : ActionScript 3.0
Product Version : Flex 3
Runtime Versions : Flash Player 9, AIR 1.1

The TweenEvent.TWEEN_END constant defines the value of the event object's type property for a tweenEnd event.

The properties of the event object have the following values:

PropertyValue
bubblesfalse
cancelablefalse
currentTargetThe Object that defines the event listener that handles the event. For example, if you use myButton.addEventListener() to register an event listener, myButton is the value of the currentTarget.
targetThe Object that dispatched the event; it is not always the Object listening for the event. Use the currentTarget property to always access the Object listening for the event.
valueThe value passed to the onTweenEnd() method.

See also

TWEEN_STARTConstant 
public static const TWEEN_START:String = tweenStart

Language Version : ActionScript 3.0
Product Version : Flex 3
Runtime Versions : Flash Player 9, AIR 1.1

The TweenEvent.TWEEN_START constant defines the value of the event object's type property for a tweenStart event.

The properties of the event object have the following values:

PropertyValue
bubblesfalse
cancelablefalse
currentTargetThe Object that defines the event listener that handles the event. For example, if you use myButton.addEventListener() to register an event listener, myButton is the value of the currentTarget.
targetThe Object that dispatched the event; it is not always the Object listening for the event. Use the currentTarget property to always access the Object listening for the event.
valueThe value passed to the onTweenUpdate() method.

TWEEN_UPDATEConstant 
public static const TWEEN_UPDATE:String = tweenUpdate

Language Version : ActionScript 3.0
Product Version : Flex 3
Runtime Versions : Flash Player 9, AIR 1.1

The TweenEvent.TWEEN_UPDATE constant defines the value of the event object's type property for a tweenUpdate event.

The properties of the event object have the following values:

PropertyValue
bubblesfalse
cancelablefalse
currentTargetThe Object that defines the event listener that handles the event. For example, if you use myButton.addEventListener() to register an event listener, myButton is the value of the currentTarget.
targetThe Object that dispatched the event; it is not always the Object listening for the event. Use the currentTarget property to always access the Object listening for the event.
valueThe value passed to the onTweenUpdate() method.