Property | Defined by | ||
---|---|---|---|
dataProvider : Object
The data that is used to created the visual panes.
| SlideRevolver | ||
navigationManager : INavigationManager
This is a navigation manager that is required if
useDefaultNavigationBehavior
is set to true . | SlideRevolver | ||
nextEffect : Effect | SlideRevolver | ||
previousEffect : Effect | SlideRevolver | ||
slideHeight : Number
The height of the tallest slide.
| SlideRevolver | ||
slideWidth : Number
The width of the widest slide.
| SlideRevolver |
Property | Defined by | ||
---|---|---|---|
createdRenderers : Vector | SlideRevolver | ||
currentRenderer : SlideDisplay
| SlideRevolver |
Method | Defined by | ||
---|---|---|---|
Constructor.
| SlideRevolver |
Method | Defined by | ||
---|---|---|---|
addNavigationListeners():void
Adds the necessary handlers to the
navigationManager that is set. | SlideRevolver | ||
| SlideRevolver | ||
| SlideRevolver | ||
removeNavigationListeners():void
Adds the handlers from the
navigationManager . | SlideRevolver |
createdRenderers | property |
protected var createdRenderers:Vector
currentRenderer | property |
protected var currentRenderer:SlideDisplay
dataProvider | property |
dataProvider:Object
[read-write]The data that is used to created the visual panes.
The dataProvider
requires an slideFilename
as the image to display.
The default value is null
.
public function get dataProvider():Object
public function set dataProvider(value:Object):void
<slide slideFilename="/path/to/thumbnail/patient1.swf" /> <slide slideFilename="/path/to/thumbnail/patient2.swf" /> <slide slideFilename="/path/to/thumbnail/patient3.swf" />
navigationManager | property |
navigationManager:INavigationManager
[read-write]
This is a navigation manager that is required if useDefaultNavigationBehavior
is set to true
.
When this is set, the item clicked in the component will automatically call the
navigateToSlideIndex()
method of the INavigationManager
object.
The default value is null
.
public function get navigationManager():INavigationManager
public function set navigationManager(value:INavigationManager):void
nextEffect | property |
public var nextEffect:Effect
previousEffect | property |
public var previousEffect:Effect
slideHeight | property |
slideHeight:Number
[read-write]The height of the tallest slide.
The default value is 100;
.
public function get slideHeight():Number
public function set slideHeight(value:Number):void
slideWidth | property |
slideWidth:Number
[read-write]The width of the widest slide.
The default value is 100;
.
public function get slideWidth():Number
public function set slideWidth(value:Number):void
SlideRevolver | () | constructor |
public function SlideRevolver()
Constructor.
addNavigationListeners | () | method |
protected function addNavigationListeners():void
Adds the necessary handlers to the navigationManager
that is set.
navigationChangedHandler | () | method |
protected function navigationChangedHandler(e:NavigationChangeEvent):void
Parameters
e:NavigationChangeEvent |
navigationChangingHandler | () | method |
protected function navigationChangingHandler(e:NavigationChangeEvent):void
Parameters
e:NavigationChangeEvent |
removeNavigationListeners | () | method |
protected function removeNavigationListeners():void
Adds the handlers from the navigationManager
.