
Event Object Type: net.slideshowpro.thumbgrid.TGRequestEvent
TGRequestEvent.type property = net.slideshowpro. thumbgrid.TGRequestEvent.PREV_THUMB_GROUP
ThumbGrid Version: ThumbGrid 1 and 2
Language Version: ActionScript 3.0
Player Version: Flash Player 9.0.0.0
Dispatched when the prevThumbGroup() method is requested.
| Property | Value |
|---|---|
| bubbles | false |
| cancelable | false; there is no default behavior to cancel. |
| num | The increment of the request (always -1) |
The following example traces the event to the Output panel.
import net.slideshowpro.thumbgrid.*;
function onRequestEvent(event:TGRequestEvent) {
trace("Previous thumb group has been requested.");
}
my_tg.addEventListener(TGRequestEvent.PREV_THUMB_GROUP, onRequestEvent);