Packageispring.presenter.player.slides
Interfacepublic 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 represents a view of a presentation slide. It extends the ISlideView interface and provides access to the slide playback controller.

The IPresentationSlideView interface can be obtained from an existing ISlideView interface of the presentation slide using type casting.

View the examples

See also

ispring.presenter.presentation.slides.SlideType
ispring.presenter.player.slides.ISlideView


Public Properties
PropertyDefined 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
Property Detail
playbackControllerproperty
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.


Implementation
    public function get playbackController():ISlidePlaybackController

See also

Examples
The following example illustrates obtaining the IPresentationSlideView interface.
 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
 }