
Event Object Type: net.slideshowpro.slideshowpro.SSPImageEvent
SSPImageEvent.type property = net.slideshowpro.slideshowpro.SSPImageEvent.IMAGE_LOAD
Language Version: ActionScript 3.0
Player Version: Flash Player 9.0.0.0
Dispatched when slideshow content successfully loads.
| Property | Value |
|---|---|
| bubbles | false |
| cancelable | false; there is no default behavior to cancel. |
| num | The numerical order of the content. |
The following traces the numerical position of the image/video that has loaded:
import net.slideshowpro.slideshowpro.*;
function onImageLoad(event:SSPImageEvent) {
trace(event.num);
}
my_ssp.addEventListener(SSPImageEvent.IMAGE_LOAD, onImageLoad);