ActionScript 2.0 Components Language Reference |
|
|
|
| ComboBox component > ComboBox.text | |||
Flash Player 6 (6.0.79.0).
Flash MX 2004.
comboBoxInstance.text
Property; the text of the text box. You can get and set this value for editable combo boxes. For static combo boxes, the value is read-only.
The following example sets the current text value of an editable combo box:
my_cb.addItem("Arkansas");
my_cb.addItem("Georgia");
my_cb.editable = true;
my_cb.text = "California";
|
|
|
|