Thumbnailer.onThumbsLoaded

Availability

Flash Player 6

Usage

myThumbnailer.onThumbsLoaded  = function(mc) {};

Parameters

mc - path to the MovieClip instance that holds the thumbnail.

Returns

Nothing.

Description

Event handler; invoked when all thumbnails are loaded.
You must define a function that executes when the event is invoked.

Example

The following example defines a function for the onThumbsLoaded event that sends a trace action to the Output window:

myThumbnailer.onThumbsLoaded = function(mc) {
      trace ("onThumbsLoaded called -> " + mc);
}