| Package | mx.events |
| Class | public class TweenEvent |
| Inheritance | TweenEvent flash.events.Event |
tweenUpdatetweenEndSee also
| Property | Defined 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 | ||
| Method | Defined by | ||
|---|---|---|---|
|
TweenEvent(type:String, bubbles:Boolean = false, cancelable:Boolean = false, value:Object = null)
Constructor.
| TweenEvent | ||
| Constant | Defined 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 | ||
| value | property |
public var 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.
For the exact value of this property, see the instance class for each tween effect.
See also
| TweenEvent | () | constructor |
public function TweenEvent(type:String, bubbles:Boolean = false, cancelable:Boolean = false, value:Object = null)Constructor.
Parameterstype: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.
|
| TWEEN_END | constant |
public static const TWEEN_END:String = "tweenEnd"
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:
| Property | Value |
|---|---|
bubbles | false |
cancelable | false |
currentTarget | The 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. |
target | The 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. |
value | The value passed to the
onTweenEnd() method. |
See also
| TWEEN_START | constant |
public static const TWEEN_START:String = "tweenStart"
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:
| Property | Value |
|---|---|
bubbles | false |
cancelable | false |
currentTarget | The 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. |
target | The 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. |
value | The value passed to the
onTweenUpdate() method. |
| TWEEN_UPDATE | constant |
public static const TWEEN_UPDATE:String = "tweenUpdate"
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:
| Property | Value |
|---|---|
bubbles | false |
cancelable | false |
currentTarget | The 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. |
target | The 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. |
value | The value passed to the
onTweenUpdate() method. |