Packagegraphics.transitions
Classpublic class CoreTransition
InheritanceCoreTransition Inheritance CoreAction Inheritance Task Inheritance Object
Implements Transition
Subclasses Motion, NetStreamTransition, SwitchBackgroundGradientColor, TimelineTransition

This core class defines the skeletal implementation of the Transition interface.



Public Properties
 PropertyDefined By
 InheritedchangeIt : Signaler
This signal emit when the notifyChanged method is invoked.
CoreAction
 InheritedclearIt : Signaler
This signal emit when the notifyCleared method is invoked.
CoreAction
 InheritedfinishIt : Signaler
This signal emit when the notifyFinished method is invoked.
Task
  id : *
Indicates the id value of this object.
CoreTransition
 InheritedinfoIt : Signaler
This signal emit when the notifyInfo method is invoked.
CoreAction
 Inheritedlogger : Logger
Determinates the internal Logger reference of this Loggable object.
Task
 Inheritedlooping : Boolean
The flag to determinate if the Action object is looped.
CoreAction
 InheritedloopIt : Signaler
This signal emit when the notifyLooped method is invoked.
CoreAction
 InheritedpauseIt : Signaler
This signal emit when the notifyPause method is invoked.
CoreAction
 Inheritedphase : String
[read-only] The current phase of the action.
Task
 InheritedprogressIt : Signaler
This signal emit when the notifyProgress method is invoked.
CoreAction
 InheritedresumeIt : Signaler
This signal emit when the notifyResumed method is invoked.
CoreAction
 Inheritedrunning : Boolean
[read-only] Indicates true if the process is in progress.
Task
 InheritedstartIt : Signaler
This signal emit when the notifyStarted method is invoked.
Task
 InheritedstopIt : Signaler
This signal emit when the notifyStopped method is invoked.
CoreAction
 InheritedtimeoutIt : Signaler
This signal emit when the notifyTimeOut method is invoked.
CoreAction
Public Methods
 MethodDefined By
  
CoreTransition(id:* = null)
Creates a new CoreTransition instance.
CoreTransition
  
clone():*
[override] Returns a shallow copy of this object.
CoreTransition
  
equals(o:*):Boolean
Compares the specified object with this object for equality.
CoreTransition
 Inherited
isLocked():Boolean
Returns true if the object is locked.
Task
 Inherited
lock():void
Locks the object.
Task
 Inherited
Notify when the process is changed.
CoreAction
 Inherited
Notify when the process is cleared.
CoreAction
 Inherited
Notify an ActionEvent when the process is finished.
Task
 Inherited
notifyInfo(info:*):void
Notify a specific information when the process is changed.
CoreAction
 Inherited
Notify when the process is looped.
CoreAction
 Inherited
Notify when the process is paused.
CoreAction
 Inherited
Notify when the process is in progress.
CoreAction
 Inherited
Notify when the process is resumed.
CoreAction
 Inherited
Notify an ActionEvent when the process is started.
Task
 Inherited
Notify when the process is stopped.
CoreAction
 Inherited
Notify when the process is out of time.
CoreAction
  
resume():void
Resume this transition.
CoreTransition
 Inherited
run(... arguments):void
Run the process.
Task
  
start():void
Starts the transition.
CoreTransition
  
stop():void
Stops the transition.
CoreTransition
 Inherited
unlock():void
Unlocks the display.
Task
Protected Methods
 MethodDefined By
 Inherited
setRunning(b:Boolean):void
Changes the running property value.
Task
Property Detail
idproperty
id:*

Indicates the id value of this object.


Implementation
    public function get id():*
    public function set id(value:any):void
Constructor Detail
CoreTransition()Constructor
public function CoreTransition(id:* = null)

Creates a new CoreTransition instance.

Parameters
id:* (default = null) — id value of this object.
Method Detail
clone()method
override public function clone():*

Returns a shallow copy of this object.

Returns
* — a shallow copy of this object.
equals()method 
public function equals(o:*):Boolean

Compares the specified object with this object for equality. This method compares the ids of the objects with the Identifiable.getID() method.

Parameters

o:*

Returns
Booleantrue if the the specified object is equal with this object.
resume()method 
public function resume():void

Resume this transition.

start()method 
public function start():void

Starts the transition.

stop()method 
public function stop():void

Stops the transition.