Movieclip.onkillfocus - MACROMEDIA FLASH MX 2004-ACTIONSCRIPT LANGUAGE Reference

Actionscript language reference
Table of Contents

Advertisement

MovieClip.onKillFocus

Availability
Flash Player 6.
Usage
my_mc.onKillFocus = function (newFocus:Object) {
// your statements here
}
Parameters
The object that is receiving the keyboard focus.
newFocus
Returns
Nothing.
Description
Event handler; invoked when a movie clip loses keyboard focus. The
receives one parameter,
focus. If no object receives the focus,
You must define a function that executes when the event handler is invoked. You can define the
function on the Timeline or in a class file that extends the MovieClip class or is linked to a symbol
in the library. For more information, see "Assigning a class to a movie clip symbol" in Using
ActionScript in Flash.
Example
The following example displays writes information about the movie clip that loses focus, and the
instance that currently has focus. Two movie clips, called
Add the following ActionScript to your AS or FLA document:
my_mc.onRelease = Void;
other_mc.onRelease = Void;
my_mc.onKillFocus = function(newFocus) {
trace("onKillFocus called, new focus is: "+newFocus);
};
Tab between the two instances, and information displays in the Output panel.
See Also
MovieClip.onSetFocus
558
Chapter 2: ActionScript Language Reference
, which is an object that represents the new object receiving the
newFocus
newFocus
onKillFocus
contains the value
null
and
my_mc
other_mc
method
.
, are on the Stage.

Advertisement

Table of Contents
loading
Need help?

Need help?

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

Subscribe to Our Youtube Channel

This manual is also suitable for:

Flash mx

Table of Contents