
Event Object Type: net.slideshowpro.slideshowpro.SSPAlbumEvent
SSPAlbumEvent.type property = net.slideshowpro.slideshowpro.SSPAlbumEvent.ALBUM_START
Language Version: ActionScript 3.0
Player Version: Flash Player 9.0.0.0
Dispatched when an album is loaded.
| Property | Value |
|---|---|
| bubbles | false |
| cancelable | false; there is no default behavior to cancel. |
| id | The id of the affected album. |
The following traces the ID of the album that has started to the Output panel.
import net.slideshowpro.slideshowpro.*;
function onAlbumStart(event:SSPAlbumEvent) {
trace(event.id);
}
my_ssp.addEventListener(SSPAlbumEvent.ALBUM_START, onAlbumStart);