在 flex 中解析样式表 c:\\path\demo\src\demo.xxml 时出错
我已在我的 xxml 应用程序中包含 css 代码,但我在解析样式表 c:\path\demo\src\demo.xxml 时遇到错误,下面是我的代码,感谢您提前提供帮助
<mx:Style>
.friendRendererToolTip
{
borderStyle : errorTipAbove;
paddingTop : 3;
borderColor : 0;
fontSize : 11;
paddingLeft : 1;
backgroundAlpha : 1;
paddingRight : 12;
fontWeight : bold;
height : 33;
dropShadowEnabled : false;
color : 16777215;
alpha : 1;
paddingBottom : 3;
}
Button
{
borderStyle : solid;
borderColor : 5661305;
color : 0;
backgroundColor : 14540253;
cornerRadius : 0;
fontSize : 13;
fillAlphas : [1, 0.31, 1, 1];
}
.maincontainer
{
borderStyle : solid;
borderColor : 6453933;
backgroundColor : 15593460;
cornerRadius : 5;
verticalGap : 0;
}
.mainheader
{
paddingTop : 1;
verticalAlign : middle;
paddingLeft : 11;
}
global
{
color : 0;
fontFamily : Tahoma;
fontSize : 13;
}
.1Slot
{
backgroundColor : 16777215;
}
.maincontent
{
paddingLeft : 9;
paddingRight : 9;
}
Label
{
color : 0;
fontSize : 13;
}
.yButton
{
cornerRadius : 5;
}
ToolTip
{
cornerRadius : 0;
}
.activityArea
{
borderStyle : solid;
borderColor : 10859729;
backgroundColor : 16777215;
disabledColor : 15987699;
}
</mx:Style>
I have include css code in my xxml application,but i m getting error error parsing stylesheet c:\path\demo\src\demo.xxml below is my code thanks for help in advance
<mx:Style>
.friendRendererToolTip
{
borderStyle : errorTipAbove;
paddingTop : 3;
borderColor : 0;
fontSize : 11;
paddingLeft : 1;
backgroundAlpha : 1;
paddingRight : 12;
fontWeight : bold;
height : 33;
dropShadowEnabled : false;
color : 16777215;
alpha : 1;
paddingBottom : 3;
}
Button
{
borderStyle : solid;
borderColor : 5661305;
color : 0;
backgroundColor : 14540253;
cornerRadius : 0;
fontSize : 13;
fillAlphas : [1, 0.31, 1, 1];
}
.maincontainer
{
borderStyle : solid;
borderColor : 6453933;
backgroundColor : 15593460;
cornerRadius : 5;
verticalGap : 0;
}
.mainheader
{
paddingTop : 1;
verticalAlign : middle;
paddingLeft : 11;
}
global
{
color : 0;
fontFamily : Tahoma;
fontSize : 13;
}
.1Slot
{
backgroundColor : 16777215;
}
.maincontent
{
paddingLeft : 9;
paddingRight : 9;
}
Label
{
color : 0;
fontSize : 13;
}
.yButton
{
cornerRadius : 5;
}
ToolTip
{
cornerRadius : 0;
}
.activityArea
{
borderStyle : solid;
borderColor : 10859729;
backgroundColor : 16777215;
disabledColor : 15987699;
}
</mx:Style>
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
对颜色使用 CSS 标准,例如
#FF00FF
。Use CSS standards for colors like
#FF00FF
.您需要使用
和
]]>
包裹您的样式。errorTipAbove
不存在。所有颜色的格式都错误,请使用#RRGGBB 十六进制格式。我只能看到这些。尝试删除/注释掉行,直到看到它起作用为止。You need to wrap your styles with
<![CDATA[
and]]>
.errorTipAbove
is not there. All colors are in bad format, use #RRGGBB hex format. That's all I can see. Try removing/commenting out lines until you see it work.