Packageispring.presenter.presentation
Interfacepublic interface ISlideShows

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 ISlideShows interface represents a collection of the custom slide shows. A slide show is a named sequence of slides in a presentation.

The ISlideShows interface can be obtained using the slideShows property on the IPresentation interface.

See also

ispring.presenter.presentation.ISlideShow
ispring.presenter.presentation.IPresentation


Public Properties
PropertyDefined By
count : uint
[read-only] Returns the number of slide slows within the collection.
ISlideShows
Public Methods
MethodDefined By
 
Returns the slide show that exists at the specified index.
ISlideShows
 
getSlideShowByName(slideShowName:String):ISlideShow
Returns the slide show with the specified name.
ISlideShows
Property Detail
countproperty
count:uint  [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

Returns the number of slide slows within the collection.


Implementation
    public function get count():uint
Method Detail
getSlideShow()method
public function getSlideShow(index:uint):ISlideShow

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

Returns the slide show that exists at the specified index.

Parameters

index:uint — The index of the slide show. The index value must be in the range from 0 to the number of slide shows minus 1.

Returns
ISlideShow — The slide show at the specified index position.

Throws
RangeError — Throws if the specified slide show index is out of range.

See also

getSlideShowByName()method 
public function getSlideShowByName(slideShowName:String):ISlideShow

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

Returns the slide show with the specified name.

Parameters

slideShowName:String — The name of the slide show.

Returns
ISlideShow — The slide show with the specified name or null if the slide shown does not exist in the collection.

See also