Flash Player 6.
my_btn
.onReleaseOutside
None.
Nothing.
Event handler; invoked when the mouse is released while the pointer is outside the button after the button is pressed while the pointer is inside the button.
You must define a function that executes when the event handler is invoked.
The following example defines a function for the onReleaseOutside
handler that sends a trace
action to the Output window.
my_btn.onReleaseOutside = function () { trace ("onReleaseOutside called"); };