在flex中解析样式表时出错

发布于 2024-11-02 15:12:02 字数 1569 浏览 3 评论 0原文

我收到错误“错误解析样式表”,这是什么,谢谢您的帮助,这是我的代码

<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;
    }

i Am getting error "error parsing stylesheet" what it is thanks for help in advance this is my code

<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;
    }

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

北笙凉宸 2024-11-09 15:12:02

请使用 fillAlpha

fillAlphas : 1, 0.31, 1, 1; 

希望有帮助

Please use fillAlpha as

fillAlphas : 1, 0.31, 1, 1; 

hopes that helps

温暖的光 2024-11-09 15:12:02

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

像这样使用

fillAlphas : 1, 0.31, 1, 1;

Square brackets not needed for fillAlphas style in Button.

Use like this

fillAlphas : 1, 0.31, 1, 1;
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文