| Package | flare.animate |
| Interface | public interface ISchedulable |
| Implementors | Transition |
| Property | Defined by | ||
|---|---|---|---|
| id : String A unique name identifying this schedulable object.
| ISchedulable | ||
| Method | Defined by | ||
|---|---|---|---|
|
cancelled():void
Invoked if a scheduled item is cancelled by the scheduler.
| ISchedulable | ||
|
evaluate(time:Number):Boolean
Evaluate a scheduled call.
| ISchedulable | ||
| id | property |
id:String [read-write] A unique name identifying this schedulable object. The default
is null. If non-null, any other scheduled items with
the same id will be canceled upon scheduling.
Once an item has been scheduled, it's id should not be changed. However, it is left to subclasses to respect this convention. If it is not followed, erratic cancels may occur.
Implementation public function get id():String
public function set id(value:String):void
| cancelled | () | method |
public function cancelled():voidInvoked if a scheduled item is cancelled by the scheduler.
| evaluate | () | method |
public function evaluate(time:Number):BooleanEvaluate a scheduled call.
Parameterstime:Number — the current time in milliseconds
|
Boolean — true if this item should be removed from the scheduler,
false if it should continue to be run.
|