
Event Object Type: net.slideshowpro.slideshowpro.SSPImageEvent
SSPImageEvent.type property = net.slideshowpro.slideshowpro.SSPImageEvent.IMAGE_CLICK
Language Version: ActionScript 3.0
Player Version: Flash Player 9.0.0.0
Dispatched when slideshow content is clicked by the viewer's mouse.
| Property | Value |
|---|---|
| bubbles | false |
| cancelable | false; there is no default behavior to cancel. |
| num | The numerical order of the content. |
The following example send an image click notice to the Output panel:
import net.slideshowpro.slideshowpro.*;
function onSlideShowClick(event:SSPImageEvent) {
if (event.type=="imageClick") {
trace("Image was clicked");
}
}
my_ssp.addEventListener(SSPDImageEvent.IMAGE_CLICK, onSlideShowClick);
