Packagecom.quilix.controls
Classpublic class ImageMarquee
InheritanceImageMarquee Inheritance mx.core.UIComponent

A marquee or chain of right or left scrolling images.



Public Properties
 PropertyDefined by
  autoStart : Boolean
If set to true scrolling will being as soon as the component is added to the stage.
ImageMarquee
  images : Array
[write-only]
ImageMarquee
  running : Boolean
[read-only] Returns true if the marquee is scrolling either right or left.
ImageMarquee
  scrollDirection : String
The direction the images scroll in - either right or left.
ImageMarquee
  scrollSpeed : int
The number of pixels that the images will advance by; minimum value is 1 maximum value is 10.
ImageMarquee
  VERSION : String
[read-only] Version of the QFx class.
ImageMarquee
Public Methods
 MethodDefined by
  
Constructor.
ImageMarquee
  
start():void
Manual method to start marquee scroll.
ImageMarquee
  
stop():void
Manual method to stop marquee scroll.
ImageMarquee
Public Constants
 ConstantDefined by
  SCROLL_LEFT : String = "scrollLeft"
[static] Used to set the marquee scroll direction to left.
ImageMarquee
  SCROLL_RIGHT : String = "scrollRight"
[static] Used to set the marquee scroll direction to right.
ImageMarquee
Property detail
autoStartproperty
autoStart:Boolean  [read-write]

If set to true scrolling will being as soon as the component is added to the stage.

The default value is false.

Implementation
    public function get autoStart():Boolean
    public function set autoStart(value:Boolean):void
imagesproperty 
images:Array  [write-only]Implementation
    public function set images(value:Array):void
runningproperty 
running:Boolean  [read-only]

Returns true if the marquee is scrolling either right or left.

This property can be used as the source for data binding.

Implementation
    public function get running():Boolean
scrollDirectionproperty 
scrollDirection:String  [read-write]

The direction the images scroll in - either right or left.

The default value is ImageMarquee.SCROLL_RIGHT.

This property can be used as the source for data binding.

Implementation
    public function get scrollDirection():String
    public function set scrollDirection(value:String):void
scrollSpeedproperty 
scrollSpeed:int  [read-write]

The number of pixels that the images will advance by; minimum value is 1 maximum value is 10.

The default value is 2.

Implementation
    public function get scrollSpeed():int
    public function set scrollSpeed(value:int):void
VERSIONproperty 
VERSION:String  [read-only]

Version of the QFx class.

Implementation
    public function get VERSION():String
Constructor detail
ImageMarquee()constructor
public function ImageMarquee()

Constructor.

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

Manual method to start marquee scroll.

stop()method 
public function stop():void

Manual method to stop marquee scroll.

Constant detail
SCROLL_LEFTconstant
public static const SCROLL_LEFT:String = "scrollLeft"

Used to set the marquee scroll direction to left.

SCROLL_RIGHTconstant 
public static const SCROLL_RIGHT:String = "scrollRight"

Used to set the marquee scroll direction to right.