Packageispring.presenter.player.events
Classpublic class PresentationLoaderEvent
InheritancePresentationLoaderEvent Inheritance flash.events.Event

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 PresentationLoaderEvent class represents an event that is dispatched by the presentation loader.

See also

ispring.presenter.player.IPresentationLoader


Public Properties
PropertyDefined By
index : uint
[read-only] The index of the slide related to the dispatched event.
PresentationLoaderEvent
Public Methods
MethodDefined By
 
PresentationLoaderEvent(type:String, slideIndex:uint)
Constructor.
PresentationLoaderEvent
Public Constants
ConstantDefined By
PROGRESS : String = slideLoadingProgress
[static] The PresentationLoaderEvent.PROGRESS constant defines the value of the type property of the event object for a slideLoadingProgress event.
PresentationLoaderEvent
SLIDE_LOADED : String = slideLoaded
[static] The PresentationLoaderEvent.SLIDE_LOADED constant defines the value of the type property of the event object for a slideLoaded event.
PresentationLoaderEvent
Property Detail
indexproperty
index: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

The index of the slide related to the dispatched event.


Implementation
    public function get index():uint
Constructor Detail
PresentationLoaderEvent()Constructor
public function PresentationLoaderEvent(type:String, 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

Constructor.

Parameters
type:String — The event type; indicates the action that triggered the event.
 
slideIndex:uint — The index of the slide.
Constant Detail
PROGRESSConstant
public static const PROGRESS:String = slideLoadingProgress

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 PresentationLoaderEvent.PROGRESS constant defines the value of the type property of the event object for a slideLoadingProgress event.

The properties of the event object have the following values:

PropertyValue
bubblesfalse
cancelablefalse; there is no default behavior to cancel.
currentTargetThe 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.
indexThe index of the slide which loading progress has been updated.
targetThe 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.

See also

SLIDE_LOADEDConstant 
public static const SLIDE_LOADED:String = slideLoaded

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 PresentationLoaderEvent.SLIDE_LOADED constant defines the value of the type property of the event object for a slideLoaded event.

The properties of the event object have the following values:

PropertyValue
bubblesfalse
cancelablefalse; there is no default behavior to cancel.
currentTargetThe 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.
indexThe index of the loaded slide.
targetThe 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.

See also