| Package | com.bourre.events |
| Class | public class BooleanEvent |
| Inheritance | BooleanEvent BasicEvent flash.events.Event |
| Player version: | Flash Player 9.0 |
| Language version: | ActionScript 3.0 |
See also
| Method | Defined by | ||
|---|---|---|---|
|
BooleanEvent(type:String, target:Object = null, bool:Boolean = false)
Creates a new
BooleanEvent object. | BooleanEvent | ||
|
clone():Event
Clone the event
| BooleanEvent | ||
|
getBoolean():Boolean
Returns the boolean value carried by this event.
| BooleanEvent | ||
![]() |
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 | |
| BooleanEvent | () | constructor |
public function BooleanEvent(type:String, target:Object = null, bool:Boolean = false)
| Player version: | Flash Player 9.0 |
| Language version: | ActionScript 3.0 |
Creates a new BooleanEvent object.
type:String — Name of the event type
|
|
target:Object (default = null) — Target of this event
|
|
bool:Boolean (default = false) — Boolean value carried by this event
|
| clone | () | method |
public override function clone():Event
| Player version: | Flash Player 9.0 |
| Language version: | ActionScript 3.0 |
Clone the event
ReturnsEvent — a clone of the event
|
| getBoolean | () | method |
public function getBoolean():Boolean
| Player version: | Flash Player 9.0 |
| Language version: | ActionScript 3.0 |
Returns the boolean value carried by this event.
ReturnsBoolean — the boolean value carried by this event.
|