Packageispring.presenter.player.startup
Interfacepublic interface IPresentationStartup

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 IPresentationStartup interface provides information about the presentation startup behavior.

The IPresentationPlaybackController interface dispatches the presentationStartup event at the presentation startup providing access to the IPresentationStartup interface.

It is possible to redefine the default behavior of the player by modifying the values of the IPresentationStartup interface properties in the presentationStartup event handler.

See also

ispring.presenter.player.IPresentationPlaybackController
ispring.presenter.player.IPresentationPlaybackController.presentationStartup
ispring.presenter.player.events.PresentationStartupEvent
ispring.presenter.player.startup.PresentationStartupAction


Public Properties
PropertyDefined By
action : String
Defines the action of the player at the presentation startup.
IPresentationStartup
autoStart : Boolean
Indicates whether the presentation is started automatically after executing the specified startup action.
IPresentationStartup
slideIndex : uint
The slide index used as a startup action parameter.
IPresentationStartup
Property Detail
actionproperty
action:String

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

Defines the action of the player at the presentation startup. See the ispring.presenter.player.startup.PresentationStartupAction constants for more details.

The presentation startup action is not executed if the presentationStartup event is canceled by calling the preventDefault() method on the PresentationStartupEvent object.


Implementation
    public function get action():String
    public function set action(value:String):void

See also

autoStartproperty 
autoStart:Boolean

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

Indicates whether the presentation is started automatically after executing the specified startup action.


Implementation
    public function get autoStart():Boolean
    public function set autoStart(value:Boolean):void

See also

slideIndexproperty 
slideIndex:uint

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 slide index used as a startup action parameter. See the ispring.presenter.player.startup.PresentationStartupAction constants for more details.


Implementation
    public function get slideIndex():uint
    public function set slideIndex(value:uint):void

See also