| 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.
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():uintpublic 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.
|
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:
| 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. |
index | The index of the slide which loading progress has been updated. |
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_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:
| 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. |
index | The index of the loaded slide. |
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