A-C > Button.onReleaseOutside

 

Button.onReleaseOutside

Availability

Flash Player 6.

Usage

myButton.onReleaseOutside

Parameters

None.

Returns

Nothing.

Description

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 is invoked.

Example

The following example defines a function for the onReleaseOutside method that sends a trace to the Output window.

myButton.onReleaseOutside = function () {
	trace ("onReleaseOutside called");
};