MACROMEDIA FLEX-FLEX ACTIONSCRIPT LANGUAGE Reference page 675

Actionscript language reference
Table of Contents

Advertisement

// statements
}
Selection.addListener(someListener);
Listeners enable different pieces of code to cooperate because multiple listeners can receive
notification about a single event.
Example
The following example demonstrates how to determine when input focus changes in a SWF file
between several dynamically created text fields. Enter the following ActionScript into a FLA or AS
file and then test the document:
this.createTextField("one_txt", 1, 0, 0, 100, 22);
this.createTextField("two_txt", 2, 0, 25, 100, 22);
this.createTextField("three_txt", 3, 0, 50, 100, 22);
this.createTextField("four_txt", 4, 0, 75, 100, 22);
for (var i in this) {
if (this[i] instanceof TextField) {
this[i].border = true;
this[i].type = "input";
}
}
this.createTextField("status_txt", this.getNextHighestDepth(), 200, 10, 300,
100);
status_txt.html = true;
status_txt.multiline = true;
var someListener:Object = new Object();
someListener.onSetFocus = function(oldFocus, newFocus) {
status_txt.htmlText = "<b>setFocus triggered</b>";
status_txt.htmlText += "<textformat tabStops='[20,80]'>";
status_txt.htmlText += "&nbsp;\toldFocus:\t"+oldFocus;
status_txt.htmlText += "&nbsp;\tnewFocus:\t"+newFocus;
status_txt.htmlText += "&nbsp;\tgetFocus:\t"+Selection.getFocus();
status_txt.htmlText += "</textformat>";
};
Selection.addListener(someListener);
See also
Selection.addListener(),
Selection.removeListener()
Availability
Flash Player 6.
Usage
Selection.removeListener(listener:Object)
Parameters
The object that will no longer receive focus notifications.
listener
Selection.setFocus()
Selection.removeListener()
675

Advertisement

Table of Contents
loading
Need help?

Need help?

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

This manual is also suitable for:

Flex

Table of Contents