M > MovieClip.onDragOut

 

MovieClip.onDragOut

movieclip, movieclip.onDragOut, onDragOut

Availability

Flash Player 6.

Usage

myMovieClip.onDragOut

Parameters

None.

Returns

Nothing.

Description

Event handler; invoked when the mouse button is pressed and the pointer rolls outside the object.

You must define a function that executes when the event is invoked.

Example

The following example defines a function for the onDragOutmethod that sends a trace action to the Output window.

myMovieClip.onDragOut = function () {
	trace ("onDragOut called");
};

See also

MovieClip.onDragOver