Thumbnailer.onThumbRelease

Availability

Flash Player 6

Usage

myThumbnailer.onThumbRelease  = function(mc) {};

Parameters

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

Returns

Nothing.

Description

Event handler; invoked when the mouse is released over thumbnail area.
You must define a function that executes when the event is invoked.

Example

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

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