670
Chapter 7: ActionScript for Flash
Parameters
newListener
An object with an
onSetFocus
method.
Returns
None.
Description
Method; registers an object to receive keyboard focus change notifications. When the focus
changes (for example, whenever
Selection.setFocus()
is invoked), all listening objects
registered with
addListener()
have their
onSetFocus
method invoked. Multiple objects may
listen for focus change notifications. If the listener
newListener
is already registered, no
change occurs.
Example
In the following example, you create two input text fields at runtime, setting the borders for each
text field to
true
. This code creates a new (generic) ActionScript object named
focusListener
.
This object defines for itself an
onSetFocus
property, to which it assigns a function. The function
takes two parameters: a reference to the text field that lost focus, and one to the text field that
gained focus. The function sets the
border
property of the text field that lost focus to
false
, and
sets the border property of the text field that gained focus to
true
:
this.createTextField("one_txt", 99, 10, 10, 200, 20);
this.createTextField("two_txt", 100, 10, 50, 200, 20);
one_txt.border = true;
one_txt.type = "input";
two_txt.border = true;
two_txt.type = "input";
var focusListener:Object = new Object();
focusListener.onSetFocus = function(oldFocus_txt, newFocus_txt) {
oldFocus_txt.border = false;
newFocus_txt.border = true;
};
Selection.addListener(focusListener);
When you test the SWF file, try using Tab to move between the two text fields. Make sure that
you select Control > Disable Keyboard Shortcuts so you can change focus between the two fields
using Tab.
Selection.getBeginIndex()
Availability
Flash Player 5.
Usage
Selection.getBeginIndex()
: Number
Parameters
None.
Summary of Contents for FLEX-FLEX ACTIONSCRIPT LANGUAGE
Page 1: ...Flex ActionScript Language Reference...
Page 8: ......
Page 66: ...66 Chapter 2 Creating Custom Classes with ActionScript 2 0...
Page 76: ......
Page 133: ...break 133 See also for for in do while while switch case continue throw try catch finally...
Page 135: ...case 135 See also break default strict equality switch...
Page 146: ...146 Chapter 5 ActionScript Core Language Elements See also break continue while...
Page 808: ...808 Chapter 7 ActionScript for Flash...
Page 810: ...810 Appendix A Deprecated Flash 4 operators...
Page 815: ...Other keys 815 Num Lock 144 186 187 _ 189 191 192 219 220 221 222 Key Key code...
Page 816: ...816 Appendix B Keyboard Keys and Key Code Values...
Page 822: ...822 Index...