| Package | ispring.presenter.player.slides |
| Interface | public interface IPresentationSlideView extends ISlideView, flash.events.IEventDispatcher |
| 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 IPresentationSlideView interface can be obtained from an existing ISlideView interface of the presentation slide using type casting.
See also
| Property | Defined By |
|---|---|
| displayObject : DisplayObject [read-only]
The flash.display.DisplayObject object visualizing the slides. | ISlideView |
| playbackController : ISlidePlaybackController [read-only]
The ISlidePlaybackController interface providing slide playback control facilities. | IPresentationSlideView |
| type : String [read-only]
The type of the slide view. | ISlideView |
| playbackController | property |
playbackController:ISlidePlaybackController [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 ISlidePlaybackController interface providing slide playback control facilities.
public function get playbackController():ISlidePlaybackControllerSee also
var slideView:ISlideView;
...
var presentationSlideView:IPresentationSlideView = slideView as IPresentationSlideView;
if (presentationSlideView != null) // Is it really an IPresentationSlideView object?
{
// Now we can use properties of the presentationSlideView object
}