ActionScript 2.0 Language Reference |
|
|
|
| ActionScript classes > Button > onDragOut (Button.onDragOut handler) | |||
onDragOut = function() {}
Invoked when the mouse button is clicked over the button and the pointer then dragged outside of the button. You must define a function that executes when the event handler is invoked.
Availability: ActionScript 1.0; Flash Player 6
The following example demonstrates how you can execute statements when the pointer is dragged off a button. Create a button called my_btn on the Stage and enter the following ActionScript in a frame on the Timeline:
my_btn.onDragOut = function() {
trace("onDragOut: "+this._name);
};
my_btn.onDragOver = function() {
trace("onDragOver: "+this._name);
};
|
|
|
|