| Package | com.quilix.controls |
| Class | public class ImageMarquee |
| Inheritance | ImageMarquee mx.core.UIComponent |
| Property | Defined 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 | ||
| Method | Defined by | ||
|---|---|---|---|
|
Constructor.
| ImageMarquee | ||
|
start():void
Manual method to start marquee scroll.
| ImageMarquee | ||
|
stop():void
Manual method to stop marquee scroll.
| ImageMarquee | ||
| Constant | Defined 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 | ||
| autoStart | property |
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.
public function get autoStart():Boolean
public function set autoStart(value:Boolean):void
| images | property |
images:Array [write-only]Implementation
public function set images(value:Array):void
| running | property |
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
| scrollDirection | property |
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
| scrollSpeed | property |
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.
public function get scrollSpeed():int
public function set scrollSpeed(value:int):void
| VERSION | property |
VERSION:String [read-only]Version of the QFx class.
Implementation public function get VERSION():String
| ImageMarquee | () | constructor |
public function ImageMarquee()Constructor.
| start | () | method |
public function start():voidManual method to start marquee scroll.
| stop | () | method |
public function stop():voidManual method to stop marquee scroll.
| SCROLL_LEFT | constant |
public static const SCROLL_LEFT:String = "scrollLeft"Used to set the marquee scroll direction to left.
| SCROLL_RIGHT | constant |
public static const SCROLL_RIGHT:String = "scrollRight"Used to set the marquee scroll direction to right.