BorderContainer image background 활용
개발/FLEX & AIR2011. 8. 24. 23:35
<?xml version="1.0" encoding="utf-8"?>
<s:Application xmlns:fx="http://ns.adobe.com/mxml/2009"
xmlns:s="library://ns.adobe.com/flex/spark"
xmlns:mx="library://ns.adobe.com/flex/mx">
<fx:Style>
.backgroundImage {
color: #808080;
fontWeight: bold;
fontSize: 18;
fontStyle: italic;
contentBackgroundColor: #FFFFFF ;
backgroundImage: Embed(pattern_143.gif);
backgroundImageFillMode: repeat;
}
</fx:Style>
<s:BorderContainer width="100%" height="600" styleName="backgroundImage">
<s:Label text="hai hai hai" />
</s:BorderContainer>
</s:Application>
<s:BorderContainer width="100%" height="100%"
backgroundImage="images/bkg/grey_grid.gif"
backgroundImageFillMode="repeat" >
'개발 > FLEX & AIR' 카테고리의 다른 글
두 지점사이의 거리를 구하는 메서드 공식 (0) | 2012.05.30 |
---|---|
특정 지점을 바라보게 하기위한 각도를 구하는 메서드 공식 (0) | 2012.05.30 |
FlashVars 사용법 (0) | 2011.08.24 |
flashBuilder 4.5 plug-in의 메뉴가 한글로 나올때 해결법 (0) | 2011.06.23 |
BitmapData를 PNG나 JPG로 변환하여 ByteArray로 서버에 전송하는 방법 (0) | 2011.01.13 |