Packagegraphics.events
Classpublic class FrameLabelEvent
InheritanceFrameLabelEvent Inheritance BasicEvent Inheritance flash.events.Event

The FrameLabelEvent dispatch a FrameLabel object.



Public Properties
 PropertyDefined By
 Inheritedcontext : *
Determinates the optional context of this event.
BasicEvent
  frameLabel : FrameLabel
Determinates the FrameLabel reference.
FrameLabelEvent
 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
  
FrameLabelEvent(type:String, frame:FrameLabel = null, target:Object = null, context:* = null, bubbles:Boolean = false, cancelable:Boolean = false, time:Number = 0)
Creates a new FrameLabelEvent instance.
FrameLabelEvent
  
clone():Event
[override] Returns the shallow copy of this object.
FrameLabelEvent
 Inherited
dispatch(channel:String = null):void
Dispatch the event with the global event flow.
BasicEvent
  
toString():String
[override] Returns the string representation of this event.
FrameLabelEvent
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
Public Constants
 ConstantDefined By
  FRAME_LABEL : String = frameLabel
[static] The name of the event when a frame label is found in a MovieClip during this playing process.
FrameLabelEvent
Property Detail
frameLabelproperty
frameLabel:FrameLabel

Determinates the FrameLabel reference.


Implementation
    public function get frameLabel():FrameLabel
    public function set frameLabel(value:FrameLabel):void
Constructor Detail
FrameLabelEvent()Constructor
public function FrameLabelEvent(type:String, frame:FrameLabel = null, target:Object = null, context:* = null, bubbles:Boolean = false, cancelable:Boolean = false, time:Number = 0)

Creates a new FrameLabelEvent instance.

Parameters
type:String — the string type of the instance.
 
frame:FrameLabel (default = null) — The FrameLabel reference of this event.
 
target:Object (default = null) — the target of the event.
 
context:* (default = null) — the optional context object of the event.
 
bubbles:Boolean (default = false) — indicates if the event is a bubbling event.
 
cancelable:Boolean (default = false) — indicates if the event is a cancelable event.
 
time:Number (default = 0) — this optional parameter is used in the eden deserialization to copy the timestamp value of this event.
Method Detail
clone()method
override public function clone():Event

Returns the shallow copy of this object.

Returns
Event — the shallow copy of this object.
toString()method 
override public function toString():String

Returns the string representation of this event.

Returns
String — the string representation of this event.
Constant Detail
FRAME_LABELConstant
public static const FRAME_LABEL:String = frameLabel

The name of the event when a frame label is found in a MovieClip during this playing process.