
Event Object Type: net.slideshowpro.slideshowpro.SSPImageEvent
SSPImageEvent.type property = net.slideshowpro.slideshowpro.SSPImageEvent.IMAGE_ROLLOUT
Language Version: ActionScript 3.0
Player Version: Flash Player 9.0.0.0
Dispatched when slideshow content is rolled-out 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 traces to the Output panel "over" or "out" when a user's mouse rolls into and out of slideshow content.
import net.slideshowpro.slideshowpro.*;
function onImageEvent(event:SSPImageEvent) {
if (event.type=="imageRollOver") {
trace("over");
}
if (event.type=="imageRollOut") {
trace("out");
}
}
my_ssp.addEventListener(SSPImageEvent.IMAGE_ROLLOUT, onImageEvent);
my_ssp.addEventListener(SSPImageEvent.IMAGE_ROLLOVER, onImageEvent);