Packagesandy.events
Classpublic class BubbleEvent
InheritanceBubbleEvent Inheritance flash.events.Event
SubclassesShape3DEvent

BubbleEvent defines a custom event type to work with.

See also

BubbleEventBroadcaster


Public Properties
 PropertyDefined by
  target : Object
[read-only] The event target.
BubbleEvent
Public Methods
 MethodDefined by
  
BubbleEvent(e:String, oT:Object)
Creates a new BubbleEvent instance.
BubbleEvent
  
toString():String
Returns the string representation of the event.
BubbleEvent
Property detail
targetproperty
target:Object  [read-only]

The event target.

Implementation
    public function get target():Object
Constructor detail
BubbleEvent()constructor
public function BubbleEvent(e:String, oT:Object)

Creates a new BubbleEvent instance.

Parameters
e:String — A name for the event.
 
oT:Object — The event target.

Example
     var e:BubbleEvent = new BubbleEvent(MyClass.onSomething, this);
   

Method detail
toString()method
public override function toString():String

Returns the string representation of the event.

Returns
String — String representation of this instance.