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