User Guide
124 Chapter 6: Components Dictionary
Alert.buttonWidth
Availability
Flash Player 6 (6.0 79.0).
Edition
Flash MX Professional 2004.
Usage
Alert.buttonWidth
Description
Property (class); a class (static) property that changes the width of the buttons. The default value
is 100.
See also
Alert.buttonHeight
Alert.CANCEL
Availability
Flash Player 6 (6.0 79.0).
Edition
Flash MX Professional 2004.
Usage
Alert.CANCEL
Description
Property (constant); a property with the constant hexadecimal value 0x8. This property can be
used for the
flags or defaultButton parameter of the Alert.show() method. When used as a
value for the
flags parameter, this property indicates that a Cancel button should be displayed in
the Alert window. When used as a value for the
defaultButton parameter, the Cancel button has
initial focus and is triggered when the user presses Enter (Windows) or Return (Macintosh). If the
user tabs to another button, that button is triggered when the user presses Enter.
Example
The following example uses Alert.CANCEL and Alert.OK as values for the flags parameter and
displays an Alert component with an OK button and a Cancel button:
import mx.controls.Alert;
Alert.show("This is a generic Alert window", "Alert Test", Alert.OK |
Alert.CANCEL, this);