Contents
- Usage
- Using the Library
- Using the Themes
- Using the Demo App
- Components
- Accordion
- AnimatedImage
- AutoComplete
- AutoFitText
- BarCode
- BitmapAdjustments
- ButtonBar
- Calculator
- Calendar
- CAPTCHA
- CarouselLayout
- CarouselList
- Clocks
- Colorizer
- ColorPicker
- ColorSpacePicker
- CompassContainer
- CoverflowLayout
- CoverflowList
- CursorManager
- DatePicker
- DockingCompassContainer
- Donut Chart
- ExpandingContainer
- FieldSet
- Filters
- FlexContextMenu
- FloatPaneControlBar
- Funnel Chart
- GraphicsEditor
- Heatmap
- HtmlDragDrop
- HtmlFrame
- HtmlGeolocation
- iCalendarParser
- iCalendarRecurrence
- IconButton
- Linear Gauges
- Magnifier
- Menu and MenuBar
- MiniViewport
- PackedLayout
- PackedList
- Pane
- PopUpButton
- ProgressDisplay
- Radar
- Radial Gauge
- Rating
- ReflectionContainer
- RichTextEditor
- RotaryField
- SafariMouseWheelFix
- Scroller
- Separators
- SliderField
- Sparklines
- TabPaneNavigator
- TextInput
- TimebarContainer
- Timeline
- TimeMachineLayout
- TimeMachineList
- TimePicker
- ToggleSwitchDesktop
- TransformContainer
- TreeMap
- ViewStack
- WheelList
CarouselList
Overview
List optimized for use with the CarouselLayout class.
Using the CarouselList
The list is navigated using typical Spark List methods. The major change is that instead of scrolling through the list via vertical or horizontal scroll, the list is scrolled along the angle offset, or the "angleOffset" property.
To jump to elements in the list, call centerIndex() with the desired element index.
Animations & Effects
Supports animation between elements. The "easer" and "duration" properties allow for customization of the animation. Set "duration" to 0 to skip the animation.
Mouse Wheel Support
By default, the mouse wheel supports scrolling between elements. To remove wheel scroll, add a high priority mouse wheel handler and stop the event from propagating or subclass the component.
Accessibility
The selected index can be updated via keyboard interaction. Up, down, left, right, home, and end are implemented.
Themes & Skinning
One skin is provided for the Spark theme.
Example
See the CarouselList demo application for example code.
Back To Top