Flex 3 では、Alert コンポーネントに次のスタイルを定義しました。
Alert
{
messageStyleName: alertMessageStyle;
titleStyleName: alertTitleStyle;
buttonStyleName: alertButtonStyle;
}
.alertMessageStyle
{
borderStyle: solid;
borderAlpha: 0;
roundedBottomCorners: true;
cornerRadius: 9;
headerHeight: 20;
backgroundAlpha: 0.9;
highlightAlphas: 0, 0;
headerColors: #ffffff, #ffffff;
backgroundColor: #ffffff;
shadowDistance: 4;
shadowDirection: right;
dropShadowColor: #333333;
color: #666666;
textAlign: center;
fontFamily: Arial;
fontSize: 14;
fontWeight: bold;
}
.alertTitleStyle
{
color: #666666;
backgroundColor: #ff0000;
textAlign: center;
fontFamily: Arial;
fontSize: 13;
fontWeight: bold;
}
.alertButtonStyle
{
fontFamily: Arial;
fontSize: 12;
backgroundColor: #ff0000;
}
今、私は Flex 4 に移行していますが、Spark には Alert コンポーネントがないため、同じスタイルを使用して を追加mx|Alert
しましたが、メッセージ スタイルだけが機能しています! タイトルとボタンのスタイルは無視されます! 誰かがそれらを機能させる方法を説明してもらえますか? ありがとう。