| Package | com.bourre.events |
| Class | public class LoopEvent |
| Inheritance | LoopEvent BasicEvent flash.events.Event |
| Player version: | Flash Player 9.0 |
| Language version: | ActionScript 3.0 |
LoopCommand class
to its listeners.
See also
| Method | Defined by | ||
|---|---|---|---|
|
LoopEvent(type:String, target:Object = null, count:Number = 0)
Creates a new
LoopEvent object. | LoopEvent | ||
|
clone():Event
Clone the event
| LoopEvent | ||
|
getCount():Number
Returns the iterations count since this event be fired.
| LoopEvent | ||
![]() |
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 | |
| LoopEvent | () | constructor |
public function LoopEvent(type:String, target:Object = null, count:Number = 0)
| Player version: | Flash Player 9.0 |
| Language version: | ActionScript 3.0 |
Creates a new LoopEvent object.
type:String — name of the event type
|
|
target:Object (default = null) — target object of this event
|
|
count:Number (default = 0) — the number of iterations realized
since this event be fired
|
| 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
|
| getCount | () | method |
public function getCount():Number
| Player version: | Flash Player 9.0 |
| Language version: | ActionScript 3.0 |
Returns the iterations count since this event be fired.
ReturnsNumber — the number of iterations realized
since this event be fired
|