FlowSection
Kind of class: | public class |
---|---|
Package: | |
Inherits from: |
|
Implements: | |
Known subclasses: | |
Classpath: | org.asaplibrary.management.flow.FlowSection |
File last modified: | Wednesday, 11 May 2011, 18:40:30 |
public class Gallery extends FlowSection { function Gallery () { super( "Gallery" ); ... } }or better:
function Gallery () { super( APPSETTINGS.SECTION_GALLERY ); ... }
-
Overriding the default stop action with a scaling animation:
public override function get stopAction () : IAction { var queue:ActionQueue = new ActionQueue("Section1_1 stop"); const CURRENT:Number = Number.NaN; var effect:Function = Quadratic.easeOut; queue.addAction(new AQScale().scale(this, .3, CURRENT, CURRENT, 0, 0, effect)); queue.addAction(new AQSet().setVisible(this, false)); return queue; }
Summary
-
startAction
: IAction
- The Action to be run when the section is shown.
-
stopAction
: IAction
- The Action to be run when the section is hidden.
-
setFlowManager
(inFlowManager:FlowManager) : void
- Sets the FlowManager.
- getFlowManager () : FlowManager
-
registerWithFlowManager
() : void
- Registers this FlowSection with the FlowManager - only if getName returns a valid name (not null).
-
getName
() : String
- Returns the name that is used to register this class to the FlowManager.
-
setName
(inName:String) : void
- Sets the name of the section
-
die
() : void
- To be implemented by subclasses.
-
start
() : void
- Default start function.
-
stop
() : void
- Default stop function.
Instance properties
startAction
The Action to be run when the section is shown. Actions are run by ActionRunner.
stopAction
The Action to be run when the section is hidden. Actions are run by ActionRunner.
Instance methods
die
To be implemented by subclasses.
getFlowManager
- The FlowManager, if set with setFlowManager or the constructor; otherwise FlowManager.defaultFlowManager.
getName
Returns the name that is used to register this class to the FlowManager. Override this function to set the name of a FlowSection subclass.
-
public override function getName () : String { return "Gallery"; }
registerWithFlowManager
Registers this FlowSection with the FlowManager - only if getName returns a valid name (not null). This method is called automatically by the constructor. Only call this function if you have set a non-default FlowManager in setFlowManager, or if you don't pass a name in the constuctor.
setFlowManager
Sets the FlowManager. You must call registerWithFlowManager after setting the FlowManager.
setName
Sets the name of the section
start
Default start function.
stop
Default stop function.
- MovieClip.stop