CommandFPS

Kind of class:public class
Package:com.bourre.commands
Inherits from:none
Implements:
Known subclasses:
Author:Francis Bourre
Classpath:com.bourre.commands.CommandFPS
File last modified:Monday, 24 November 2008, 11:36:52

Summary


Constructor
Instance methods
Event handlers
  • onTick (e:Event = null) : void
    • Method called by the {VISDOC_CODE_BLOCK_5} for each

Constructor

CommandFPS

public function CommandFPS (
)

Instance methods

delay

public function delay (
oC:Command) : void

getLength

public function getLength (
) : Number

push

public function push (
oC:Command) : String

pushWithName

public function pushWithName (
oC:Command, sN:String = null) : String

remove

public function remove (
oC:Command) : Boolean

removeAll

public function removeAll (
) : void

removeWithName

public function removeWithName (
sN:String) : Boolean

resume

public function resume (
oC:Command) : Boolean

resumeWithName

public function resumeWithName (
sN:String) : Boolean

stop

public function stop (
oC:Command) : Boolean

stopWithName

public function stopWithName (
sN:String) : Boolean

toString

public function toString (
) : String

Event handlers

onTick

public function onTick (
e:Event = null) : void

Method called by the {VISDOC_CODE_BLOCK_5} for each
step of time according to its time slicing approach.

The {VISDOC_CODE_BLOCK_6} method is very similar to the
old {VISDOC_CODE_BLOCK_7} method, but doesn't specifically
occurs when entering in a new frame of a frame-based animation.
The tick could be the result of a {VISDOC_CODE_BLOCK_8} call,
or a change in the timecode of a video.

#
Parameters:
e:
event dispatched by the beacon object
#
Specified by: