
Event Object Type: net.slideshowpro.slideshowpro.SSPDataEvent
SSPDataEvent.type property = net.slideshowpro.slideshowpro.SSPDataEvent.GALLERY_INFO
Language Version: ActionScript 3.0
Player Version: Flash Player 9.0.0.0
Dispatched immediately after gallery data is parsed.
| Property | Value |
|---|---|
| bubbles | false |
| cancelable | false; there is no default behavior to cancel. |
| data | Container object for the gallery title and description. |
The data object contains two properties:
The following example sends the title of the gallery to the Output panel:
import net.slideshowpro.slideshowpro.*;
function onGalleryInfo(event:SSPDataEvent) {
trace(event.data.title);
}
my_ssp.addEventListener(SSPDataEvent.GALLERY_INFO, onGalleryInfo);