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