
listenerObject = new Object();
listenerObject.onGalleryInfo = function(eventObject):Void {
// Insert your code here.
}
slideShowProInstance.addEventListener("onGalleryInfo", listenerObject);
Event; broadcast to all registered listeners when gallery data is parsed.
The event object (eventObject) contains the following properties:
The following example sends the title of the gallery to the Output panel:
listenerObject = new Object();
listenerObject.onGalleryInfo = function(eventObject):Void {
trace(eventObject.data.title);
}
my_ssp.addEventListener("onGalleryInfo", listenerObject);