![]() ![]() | |
Flash Player 6.
my_btn.onDragOver = function() {
// your statements here
}
None.
Nothing.
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 handler is invoked.
The following example defines a function for the onKeyDown handler that sends a trace() action to the Output panel:
my_btn.onDragOver = function () {
trace ("onDragOver called");
};
![]() ![]() | |