| Package | graphics.events |
| Class | public class TweenEntryEvent |
| Inheritance | TweenEntryEvent BasicEvent flash.events.Event |
| Property | Defined By | ||
|---|---|---|---|
| ADD_ENTRY : String = onAddEntry [static]
Default event type when a tween entry is added. | TweenEntryEvent | ||
| CLEAR_ENTRY : String = onClearEntry [static]
Default event type when all tween entries are removed. | TweenEntryEvent | ||
![]() | context : *
Determinates the optional context of this event. | BasicEvent | |
| entry : TweenEntry
Indicates the TweenEntry reference of this event. | TweenEntryEvent | ||
| REMOVE_ENTRY : String = onRemoveEntry [static]
Default event type when a tween entry is removed. | TweenEntryEvent | ||
![]() | target : Object [override]
Indicates the custom event target. | BasicEvent | |
![]() | timeStamp : uint [read-only]
Indicates the timestamp of the event. | BasicEvent | |
![]() | type : String [override]
Returns the type of event. | BasicEvent | |
| Method | Defined By | ||
|---|---|---|---|
TweenEntryEvent(type:String, target:Object = null, entry:TweenEntry = null, context:* = null, bubbles:Boolean = false, cancelable:Boolean = false, time:Number = 0)
Creates a new TweenEntryEvent instance. | TweenEntryEvent | ||
clone():Event [override]
Returns the shallow copy of this object. | TweenEntryEvent | ||
![]() | dispatch(channel:String = null):void
Dispatch the event with the global event flow. | BasicEvent | |
![]() | toString():String [override]
Returns the string representation of this event. | BasicEvent | |
| ADD_ENTRY | property |
public static var ADD_ENTRY:String = onAddEntryDefault event type when a tween entry is added.
| CLEAR_ENTRY | property |
public static var CLEAR_ENTRY:String = onClearEntryDefault event type when all tween entries are removed.
| entry | property |
public var entry:TweenEntryIndicates the TweenEntry reference of this event.
| REMOVE_ENTRY | property |
public static var REMOVE_ENTRY:String = onRemoveEntryDefault event type when a tween entry is removed.
| TweenEntryEvent | () | Constructor |
public function TweenEntryEvent(type:String, target:Object = null, entry:TweenEntry = null, context:* = null, bubbles:Boolean = false, cancelable:Boolean = false, time:Number = 0)Creates a new TweenEntryEvent instance.
Parameterstype:String — the string type of the instance.
| |
target:Object (default = null) — the target of the event.
| |
entry:TweenEntry (default = null) — the optional context object of the event.
| |
context:* (default = null) — indicates if the event is a bubbling event.
| |
bubbles:Boolean (default = false) — indicates if the event is a cancelable event.
| |
cancelable:Boolean (default = false) — this parameter is used in the Eden deserialization.
| |
time:Number (default = 0) |
| clone | () | method |
override public function clone():EventReturns the shallow copy of this object.
ReturnsEvent — the shallow copy of this object.
|