
Event Object Type: net.slideshowpro.slideshowpro.SSPDataEvent
SSPDataEvent.type property = net.slideshowpro.slideshowpro.SSPDataEvent.PERMALINK
Language Version: ActionScript 3.0
Player Version: Flash Player 9.0.0.0
Dispatched when a gallery loads and returns a true/false value. True if the slideshow is being accessed with a permalink URL, false if accessed normally.
| Property | Value |
|---|---|
| bubbles | false |
| cancelable | false; there is no default behavior to cancel. |
| data | Boolean for whether a gallery was accessed via a permalink URL. |
The following example traces the permalink state:
import net.slideshowpro.slideshowpro.*;
function onSlideShowData(event:SSPDataEvent) {
if (event.type=="permalink") {
trace(event.data);
}
}
my_ssp.addEventListener(SSPDataEvent.PERMALINK, onSlideShowData);
