
listenerObject = new Object();
listenerObject. onPermalink = function():Void {
// Insert your code here.
}
slideShowProInstance.addEventListener("onPreloadEnd", listenerObject);
Event; broadcast when a gallery loads. Returns true if the slideshow was accessed via a permalink URL, false if accessed normally.
The following example traces the value:
listenerObject = new Object();
listenerObject. onPermalink = function():Void {
trace(eventObject.data);
}
my_ssp.addEventListener("onPermalink", listenerObject);