| 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.
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.
|
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:
| Property | Value |
|---|
bubbles | false |
cancelable | true; This event is cancelable. Use the preventDefault() method to prevent closing of the Flash player window. |
currentTarget | The 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. |
target | The 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
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:
| Property | Value |
|---|
bubbles | false |
cancelable | false; there is no default behavior to cancel. |
currentTarget | The 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. |
target | The 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
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:
| Property | Value |
|---|
bubbles | false |
cancelable | false; there is no default behavior to cancel. |
currentTarget | The 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. |
target | The 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
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:
| Property | Value |
|---|
bubbles | false |
cancelable | false; there is no default behavior to cancel. |
currentTarget | The 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. |
target | The 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
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:
| Property | Value |
|---|
bubbles | false |
cancelable | true; This event is cancelable. Use the preventDefault() method to prevent slide changing. |
currentTarget | The 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. |
target | The 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
Tue Dec 4 2012, 06:27 PM +04:00