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