MACROMEDIA FLASH MX 2004 - ACTIONSCRIPT Reference Manual page 298

Actionscript reference guide
Hide thumbs Also See for FLASH MX 2004 - ACTIONSCRIPT:
Table of Contents

Advertisement

Button.onDragOut
Availability
Flash Player 6.
Usage
my_btn.onDragOut = function() {
// your statements here
}
Parameters
None.
Returns
Nothing.
Description
Event handler; invoked when the mouse button is pressed over the button and the pointer then
rolls outside the button.
You must define a function that executes when the event handler is invoked.
Button.onDragOver
Availability
Flash Player 6.
Usage
my_btn.onDragOver = function() {
// your statements here
}
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 handler is invoked.
Example
The following example defines a function for the
to the Output panel:
my_btn.onDragOver = function () {
trace ("onDragOver called");
};
298
Chapter 12: ActionScript Dictionary
handler that sends a
onKeyDown
action
trace()

Advertisement

Table of Contents
loading
Need help?

Need help?

Do you have a question about the FLASH MX 2004 - ACTIONSCRIPT and is the answer not in the manual?

Questions and answers

Table of Contents