在flex中解析样式表时出错

时间:2011-04-21 06:20:47

标签: flex flex3 flex4 flexbuilder

我收到错误“解析样式表时出错”提前感谢您的帮助这是我的代码

<mx:Style>

.friendRendererToolTip
    {
        borderStyle : solid;
        paddingTop : 3;
        borderColor : #003300;
        fontSize : 11;
        paddingLeft : 1;
        backgroundAlpha : 1;
        paddingRight : 12;
        fontWeight : bold;
        height : 33;
        dropShadowEnabled : false;
        color : #FF0000;
        alpha : 1;
        paddingBottom : 3;
    }

    Button
    {
        borderStyle : solid;
        borderColor : #003300;
        color : blue;
        backgroundColor : #FF0000;
        cornerRadius : 0;
        fontSize : 13;
        fillAlphas : [1, 0.31, 1, 1];
    }

    .maincontainer
    {
        borderStyle : solid;
        borderColor : #003300;
        backgroundColor : #FF0000;
        cornerRadius : 5;
        verticalGap : 0;
    }

    .mainheader
    {
        paddingTop : 1;
        verticalAlign : middle;
        paddingLeft : 11;
    }

    global
    {
        color : #003300;
        fontFamily : Tahoma;
        fontSize : 13;
    }

    .cameraSlot
    {
        backgroundColor : #FF0000;
    }

    .maincontent
    {
        paddingLeft : 9;
        paddingRight : 9;
    }

    Label
    {
        color : #FF0000;
        fontSize : 13;
    }

    .sendButton
    {
        cornerRadius : 5;
    }

    ToolTip
    {
        cornerRadius : 0;
    }

    .activityArea
    {
        borderStyle : solid;
        borderColor : #FF0000;
        backgroundColor : #003300;
        disabledColor : #003300;
    }

2 个答案:

答案 0 :(得分:1)

请使用fillAlpha

fillAlphas : 1, 0.31, 1, 1; 

希望有所帮助

答案 1 :(得分:0)

Button中的fillAlphas样式不需要方括号。

像这样使用

fillAlphas : 1, 0.31, 1, 1;