User Guide
Alert.yesLabel 87
Example
The following example uses Alert.NO and Alert.YES as values for the flags parameter and
displays an Alert component with a No button and a Yes button:
import mx.controls.Alert;
Alert.show("This is a generic Alert window", "Alert Test", Alert.NO |
Alert.YES, this);
Alert.yesLabel
Availability
Flash Player 6 (6.0.79.0).
Edition
Flash MX Professional 2004.
Usage
Alert.yesLabel
Description
Property (class); a class (static) property that indicates the label text on the Yes button.
Example
The following example sets the OK button’s label to “da”:
Alert.yesLabel = "da";