686 Chapter 12: ActionScript Dictionary
TextField.borderColor
Availability
Flash Player 6.
Usage
my_txt.borderColor
Description
Property; the color of the text field border, the Default is 0x000000 (black). This property may be
retrieved or set, even if there is currently no border.
See also
TextField.border
TextField.bottomScroll
Availability
Flash Player 6.
Usage
my_txt.bottomScroll
Description
Property (read-only); an integer (one-based index) that indicates the bottommost line that is
currently visible in
my_txt. Think of the text field as a āwindowā onto a block of text. The
property TextField.scroll is the one-based index of the topmost visible line in the window.
All the text between lines
TextField.scroll and TextField.bottomScroll is currently visible
in the text field.
TextField.condenseWhite
Availability
Flash Player 6.
Usage
my_txt.condenseWhite
Description
Property; a Boolean value that specifies whether extra white space (spaces, line breaks, and so on)
in an HTML text field should be removed when the field is rendered in a browser. The default
value is
false.
If you set this value to
true, you must use standard HTML commands such as <BR> and <P> to
place line breaks in the text field.
If
my_txt.html is false, this property is ignored.
See also
TextField.html