| Language Version : | ActionScript 3.0 |
| Product Versions : | iSpring Pro 6.0.3, iSpring Platform 6.0 |
| Runtime Versions : | AIR 1.0, Flash Player 10.1 |
The ISlideTransitionController interface provides information about the current state and progress of
the slide transition effect.
To obtain the ISlideTransitionController interface use the slideTransitionController property
on the IPresentationPlaybackController interface.
state:String [read-only]
| Language Version : | ActionScript 3.0 |
| Product Versions : | iSpring Pro 6.0.3, iSpring Platform 6.0 |
| Runtime Versions : | AIR 1.0, Flash Player 10.1 |
The state of the slide transition controller.
See the ispring.presenter.player.transitions.TransitionPlaybackState constants for more details.
Implementation public function get state():StringSee also
transitionProgress:Number [read-only]
| Language Version : | ActionScript 3.0 |
| Product Versions : | iSpring Pro 6.0.3, iSpring Platform 6.0 |
| Runtime Versions : | AIR 1.0, Flash Player 10.1 |
The transition effect progress in the range 0...1.
Implementation public function get transitionProgress():NumberEvent Object Type: ispring.presenter.player.transitions.SlideTransitionControllerEventSlideTransitionControllerEvent.type property = ispring.presenter.player.transitions.SlideTransitionControllerEvent.TRANSITION_EFFECT_FINISHED| Language Version : | ActionScript 3.0 |
| Product Versions : | iSpring Pro 6.0.3, iSpring Platform 6.0 |
| Runtime Versions : | AIR 1.0, Flash Player 10.1 |
Dispatched when a slide transition effect is finished.
The
SlideTransitionControllerEvent.TRANSITION_EFFECT_FINISHED constant defines the value of the
type
property of the event object for a
transitionEffectFinished event.
The properties of the event object have the following values:
| Property | Value |
|---|
bubbles | false |
cancelable | false; there is no default behavior to cancel. |
currentTarget | The Object that defines the event listener that handles the event. For example, if you use myButton.addEventListener() to register an event listener, myButton is the value of the currentTarget. |
slideIndex | The index of the slide the player has switched to. |
target | The Object that dispatched the event; it is not always the Object listening for the event. Use the currentTarget property to always access the Object listening for the event. |
Event Object Type: ispring.presenter.player.transitions.SlideTransitionControllerEventSlideTransitionControllerEvent.type property = ispring.presenter.player.transitions.SlideTransitionControllerEvent.TRANSITION_EFFECT_STARTED| Language Version : | ActionScript 3.0 |
| Product Versions : | iSpring Pro 6.0.3, iSpring Platform 6.0 |
| Runtime Versions : | AIR 1.0, Flash Player 10.1 |
Dispatched when a slide transition effect is started.
The
SlideTransitionControllerEvent.TRANSITION_EFFECT_STARTED constant defines the value of the
type
property of the event object for a
transitionEffectStarted event.
The properties of the event object have the following values:
| Property | Value |
|---|
bubbles | false |
cancelable | false; there is no default behavior to cancel. |
currentTarget | The Object that defines the event listener that handles the event. For example, if you use myButton.addEventListener() to register an event listener, myButton is the value of the currentTarget. |
slideIndex | The index of the slide the player starts switching to. |
target | The Object that dispatched the event; it is not always the Object listening for the event. Use the currentTarget property to always access the Object listening for the event. |
Tue Dec 4 2012, 06:27 PM +04:00