Packagecom.quilix.controls
Classpublic class ScrollingLabel
InheritanceScrollingLabel Inheritance mx.core.UIComponent

'Movie Credits' style component for displaying large amounts of info that most people probably won't read... which we are required to disclose.



Public Properties
 PropertyDefined by
  autoStart : Boolean
Calls the start method after the creation complete event if marked true.
ScrollingLabel
  running : Boolean
Returns true if the scrolling label is running.
ScrollingLabel
  speed : int
The number of pixels skipped per refresh; between 1 - 10;
ScrollingLabel
  text : String
Setter/getter for control text block.
ScrollingLabel
Public Methods
 MethodDefined by
  
Constructor.
ScrollingLabel
  
start():void
Begin scrolling text.
ScrollingLabel
  
stop():void
Stop scrolling text.
ScrollingLabel
Styles
 StyleDescriptionDefined by
  
color
Type: Number   Format: Color   CSS Inheritance: yes
Sets collective glyph color. The default value is 0x0000.
ScrollingLabel
  
fontFamily
Type: String   CSS Inheritance: yes
Sets collective glyph font family. The default value is system.
ScrollingLabel
  
fontSize
Type: Number   CSS Inheritance: yes
Sets glyph size. The default value is 10px.
ScrollingLabel
  
fontWeight
Type: String   CSS Inheritance: yes
Sets glyph weight: bold, italic, normal. The default value is normal.
ScrollingLabel
Property detail
autoStartproperty
autoStart:Boolean  [read-write]

Calls the start method after the creation complete event if marked true.

The default value is <code>false</code>.

Implementation
    public function get autoStart():Boolean
    public function set autoStart(value:Boolean):void

See also

runningproperty 
running:Boolean  [read-write]

Returns true if the scrolling label is running.

The default value is <code>false</code>.

Implementation
    public function get running():Boolean
    public function set running(value:Boolean):void
speedproperty 
speed:int  [read-write]

The number of pixels skipped per refresh; between 1 - 10;

The default value is 1px.

Implementation
    public function get speed():int
    public function set speed(value:int):void
textproperty 
text:String  [read-write]

Setter/getter for control text block.

The default value is "".

Implementation
    public function get text():String
    public function set text(value:String):void
Constructor detail
ScrollingLabel()constructor
public function ScrollingLabel()

Constructor.

See also

Method detail
start()method
public function start():void

Begin scrolling text.

See also

stop()method 
public function stop():void

Stop scrolling text.

See also