| Package | com.bourre.ioc.assembler.displayobject |
| Class | public class DisplayObjectEvent |
| Inheritance | DisplayObjectEvent BasicEvent flash.events.Event |
| Player version: | Flash Player 9.0 |
| Language version: | ActionScript 3.0 |
See also
| Property | Defined by | ||
|---|---|---|---|
| onBuildDisplayObjectEVENT : String = "onBuildDisplayObject" [static]
Defines the value of the
type property of the event
object for a onBuildDisplayObject event. | DisplayObjectEvent | ||
![]() | target : Object
The source object of this event
| BasicEvent | |
![]() | type : String
The type of this event
| BasicEvent | |
| Method | Defined by | ||
|---|---|---|---|
|
DisplayObjectEvent(type:String, d:DisplayObject)
Creates a new
DimensionEvent object. | DisplayObjectEvent | ||
![]() |
clone():Event
Clone the event
| BasicEvent | |
|
getDisplayObject():DisplayObject
Returns the display object carried by this event.
| DisplayObjectEvent | ||
![]() |
getTarget():Object
Returns the current source of this event object.
| BasicEvent | |
![]() |
getType():String
Returns the type of this event, which generally correspond
to the name of the called function on the listener.
| BasicEvent | |
![]() |
setTarget(oTarget:Object):void
Defines the new source object of this event.
| BasicEvent | |
![]() |
setType(en:String):void
Defines the new event type for this event object.
| BasicEvent | |
![]() |
toString():String
Returns the string representation of this instance.
| BasicEvent | |
| onBuildDisplayObjectEVENT | property |
public static var onBuildDisplayObjectEVENT:String = "onBuildDisplayObject"
| Player version: | Flash Player 9.0 |
| Language version: | ActionScript 3.0 |
Defines the value of the type property of the event
object for a onBuildDisplayObject event.
The properties of the event object have the following values:
| Property | Value |
|---|---|
type |
Dispatched event type |
| Method | Value |
getDisplayObject()
| The display object |
| DisplayObjectEvent | () | constructor |
public function DisplayObjectEvent(type:String, d:DisplayObject)
| Player version: | Flash Player 9.0 |
| Language version: | ActionScript 3.0 |
Creates a new DimensionEvent object.
type:String — Name of the event type
|
|
d:DisplayObject — Display object carried by this event
|
| getDisplayObject | () | method |
public function getDisplayObject():DisplayObject
| Player version: | Flash Player 9.0 |
| Language version: | ActionScript 3.0 |
Returns the display object carried by this event.
ReturnsDisplayObject — The display value carried by this event.
|