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

