User Guide
ComboBox component 189
ComboBox.close()
Availability
Flash Player 6 (6.0 79.0).
Edition
Flash MX 2004.
Usage
myComboBox.close()
Parameters
None.
Returns
Nothing.
Description
Method; closes the drop-down list.
Example
The following example closes the drop-down list of the myBox combo box:
myBox.close();
See also
ComboBox.open()
ComboBox.close
Availability
Flash Player 6 (6.0 79.0).
Edition
Flash MX 2004.
Usage
Usage 1:
on(close){
// your code here
}
Usage 2:
listenerObject = new Object();
listenerObject.close = function(eventObject){
// your code here
}
comboBoxInstance.addEventListener("close", listenerObject)