Packagegraphics.events
Classpublic class TweenEntryEvent
InheritanceTweenEntryEvent Inheritance BasicEvent Inheritance flash.events.Event

This event dispatch a TweenEntry.



Public Properties
 PropertyDefined 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
 Inheritedcontext : *
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
 Inheritedtarget : Object
[override] Indicates the custom event target.
BasicEvent
 InheritedtimeStamp : uint
[read-only] Indicates the timestamp of the event.
BasicEvent
 Inheritedtype : String
[override] Returns the type of event.
BasicEvent
Public Methods
 MethodDefined 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
 Inherited
dispatch(channel:String = null):void
Dispatch the event with the global event flow.
BasicEvent
 Inherited
toString():String
[override] Returns the string representation of this event.
BasicEvent
Protected Methods
 MethodDefined By
 Inherited
setTimeStamp(time:uint = 0):void
Sets the timestamp of the event (used this method only in internal in the Event class).
BasicEvent
Property Detail
ADD_ENTRYproperty
public static var ADD_ENTRY:String = onAddEntry

Default event type when a tween entry is added.

CLEAR_ENTRYproperty 
public static var CLEAR_ENTRY:String = onClearEntry

Default event type when all tween entries are removed.

entryproperty 
public var entry:TweenEntry

Indicates the TweenEntry reference of this event.

REMOVE_ENTRYproperty 
public static var REMOVE_ENTRY:String = onRemoveEntry

Default event type when a tween entry is removed.

Constructor Detail
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.

Parameters
type: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)
Method Detail
clone()method
override public function clone():Event

Returns the shallow copy of this object.

Returns
Event — the shallow copy of this object.