TextField.onSetFocus
739
onScroller
is called whether the scroll position changed because of a users interaction with the
text field, or programmatic changes. The
onChanged
handler fires only if a user interaction causes
the change. These two options are necessary because often one piece of code changes the scrolling
position, while the scroll bar code is unrelated and won't know that the scroll position changed
without being notified.
Example
The following example creates a text field called
my_txt
, and uses two buttons called
scrollUp_btn
and
scrollDown_btn
to scroll the contents of the text field. When the
onScroller
event handler is called, a
trace()
method is used to write information to the log
file. Create two buttons with instance names
scrollUp_btn
and
scrollDown_btn,
and add the
following ActionScript to your FLA or AS file:
this.createTextField("scroll_txt", this.getNextHighestDepth(), 10, 10, 160,
20);
this.createTextField("my_txt", this.getNextHighestDepth(), 10, 30, 320, 240);
my_txt.multiline = true;
my_txt.wordWrap = true;
for (var i = 0; i<10; i++) {
my_txt.text += "Lorem ipsum dolor sit amet, consectetuer adipiscing elit,
sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat
volutpat.";
}
scrollUp_btn.onRelease = function() {
my_txt.scroll--;
};
scrollDown_btn.onRelease = function() {
my_txt.+;
};
my_txt.onScroller = function() {
trace("onScroller called");
scroll_txt.text = my_txt." of "+my_txt.maxscroll;
};
See also
TextField.hscroll
,
TextField.maxhscroll
,
TextField.maxscroll
,
TextField.scroll
TextField.onSetFocus
Availability
Flash Player 6.
Usage
my_txt
.onSetFocus = function(
oldFocus:Object)
{
// your statements here
}
Parameters
oldFocus
The object to lose focus.
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...