A-C > Button.onDragOver |
Button.onDragOver
button, button.onDragOver, onDragOver
Availability
Flash Player 6.
Usage
myButton.onDragOver
Parameters
None.
Returns
Nothing.
Description
Event handler; invoked when the user presses and drags the mouse button outside and then over the button.
You must define a function that executes when the event is invoked.
Example
The following example defines a function for the onKeyDown method that sends a trace to the Output window:
myButton.onDragOver = function () {
trace ("onDragOver called");
};
See also