我想在 flex 中将 backgroundImage 属性设置为“../img/foo.png”之类的东西。我的代码如下所示:
<fx:Style>
@namespace s "library://ns.adobe.com/flex/spark";
@namespace mx "library://ns.adobe.com/flex/mx";
.bg {
background-image : "../img/foo.png";
background-image-fill-mode : repeat;
}
</fx:Style>
<s:BorderContainer width="200" height="200" styleName="bg" />
它不起作用。我不想使用嵌入图像,所以
background-image : Embed("../img/foo.png");
有效,但不适合我。有没有办法实现它?