
listenerObject = new Object();
listenerObject.onTransPauseStart = function(eventObject):Void {
// Insert your code here.
}
slideShowProInstance.addEventListener("onTransPauseStart", listenerObject);
Event; broadcast to all registered listeners when transition pause is engaged and the timer begins to countdown. The event object (eventObject) contains the length of the pause (in seconds).
The following example writes to the Output panel the number of seconds the current pause will last:
listenerObject = new Object();
listenerObject.onTransPauseStart = function(eventObject):Void {
trace("We're going to sit here for " + eventObject.data + " seconds.")
}
my_ssp.addEventListener("onTransPauseStart", listenerObject);
