如何在Flex中实现图片背景平铺

别找了,Flex自己是没这个功能的。下面这些链接都讲解了怎么自行实现。

转自:http://bbs.airia.cn/FLEX/thread-4095-1-1.aspx

Background image repeat in flex 3 - DEGRAFA!

e.g:

1Application {
2   background-image:    Embed("assets/images/the_image_goes_here.png");
3   background-repeat:   repeat;
4   background-position: center;
5   background-blend:    multiply;
6   borderSkin:          ClassReference("com.degrafa.skins.CSSSkin");
7} 

此外还有: