User Guide

TextArea component 737
TextArea.maxVPosition
Availability
Flash Player 6 (6.0 79.0).
Edition
Flash MX 2004.
Usage
textAreaInstance.maxVPosition
Description
Property (read-only); indicates the maximum value of TextArea.vPosition. The default value
is 0.
Example
The following code causes the text to scroll to the bottom of the component:
myTextArea.vPosition = myTextArea.maxVPosition;
See also
TextArea.hPosition
TextArea.password
Availability
Flash Player 6 (6.0 79.0).
Edition
Flash MX 2004.
Usage
textAreaInstance.password
Description
Property; a Boolean value indicating whether the text field is a password field (true) or not
(
false). If password is true, the text field is a password text field and hides the input characters.
If
password is false, the text field is not a password text field. The default value is false.
Example
The following code makes the text field a password field that displays all characters as asterisks (*):
myTextArea.password = true;