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