|
|
|||
Flash Player 6
myThumbnailer.onThumbLoad = function(mc) {};
Nothing.
Event handler; invoked when each thumbnail is loaded.
You must define a function that executes when the event is invoked.
The following example defines a function for the onThumbLoad event that sends a trace action to the Output window:
myThumbnailer.onThumbLoad = function(mc) {
trace ("onThumbLoad called -> " + mc);
}