Packageispring.presenter.player.events
Classpublic class PresentationPlaybackEvent
InheritancePresentationPlaybackEvent 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 PresentationPlaybackEvent class represents an event which is dispatched by the object implementing the IPresentationPlaybackController interface.

See also

ispring.presenter.player.IPresentationPlaybackController


Public Methods
MethodDefined By
 
PresentationPlaybackEvent(type:String, bubbles:Boolean = false, cancelable:Boolean = false)
Constructor.
PresentationPlaybackEvent
Public Constants
ConstantDefined By
CLOSE_REQUEST : String = closeRequest
[static] The PresentationPlaybackEvent.CLOSE_REQUEST constant defines the value of the type property of the event object for a closeRequest event.
PresentationPlaybackEvent
PLAYBACK_COMPLETE : String = playbackComplete
[static] The PresentationPlaybackEvent.PLAYBACK_COMPLETE constant defines the value of the type property of the event object for a playbackComplete event.
PresentationPlaybackEvent
RESYNC : String = resync
[static] The PresentationPlaybackEvent.RESYNC constant defines the value of the type property of the event object for a resync event.
PresentationPlaybackEvent
SLIDE_CHANGE : String = slideChange
[static] The PresentationPlaybackEvent.SLIDE_CHANGE constant defines the value of the type property of the event object for a slideChange event.
PresentationPlaybackEvent
SLIDE_CHANGE_REQUEST : String = slideChangeRequest
[static] The PresentationPlaybackEvent.SLIDE_CHANGE_REQUEST constant defines the value of the type property of the event object for a slideChangeRequest event.
PresentationPlaybackEvent
Constructor Detail
PresentationPlaybackEvent()Constructor
public function PresentationPlaybackEvent(type:String, bubbles:Boolean = false, cancelable:Boolean = false)

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.
 
bubbles:Boolean (default = false) — Determines whether the PresentationPlaybackEvent object participates in the bubbling stage of the event flow. The default value is false.
 
cancelable:Boolean (default = false) — Determines whether the PresentationPlaybackEvent object can be canceled. The default value is false.
Constant Detail
CLOSE_REQUESTConstant
public static const CLOSE_REQUEST:String = closeRequest

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 PresentationPlaybackEvent.CLOSE_REQUEST constant defines the value of the type property of the event object for a closeRequest event.

The properties of the event object have the following values:

PropertyValue
bubblesfalse
cancelabletrue; This event is cancelable. Use the preventDefault() method to prevent closing of the Flash player window.
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.
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

PLAYBACK_COMPLETEConstant 
public static const PLAYBACK_COMPLETE:String = playbackComplete

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 PresentationPlaybackEvent.PLAYBACK_COMPLETE constant defines the value of the type property of the event object for a playbackComplete 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.
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

RESYNCConstant 
public static const RESYNC:String = resync

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 PresentationPlaybackEvent.RESYNC constant defines the value of the type property of the event object for a resync 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.
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_CHANGEConstant 
public static const SLIDE_CHANGE:String = slideChange

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 PresentationPlaybackEvent.SLIDE_CHANGE constant defines the value of the type property of the event object for a slideChange 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.
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_CHANGE_REQUESTConstant 
public static const SLIDE_CHANGE_REQUEST:String = slideChangeRequest

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 PresentationPlaybackEvent.SLIDE_CHANGE_REQUEST constant defines the value of the type property of the event object for a slideChangeRequest event.

The properties of the event object have the following values:

PropertyValue
bubblesfalse
cancelabletrue; This event is cancelable. Use the preventDefault() method to prevent slide changing.
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.
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