[MXML] mx:style
참조: http://www.adobe.com/devnet/flex/tourdeflex/web/#docIndex=0;illustIndex=1;sampleId=9800
http://sses.tistory.com/83
정성들여만든(?) 야바위 게임의 글씨가 너무 작다;; 그래서 찾아봤더니 금방 나온다.
<mx:Style>
.myclass { color: Red; } Button { fontSize: 10pt; color: Yellow; } </mx:Style> <mx:Button styleName="myclass" label="Red Button"/> <mx:Button label="Yellow Button"/>
이런식으로 스타일을 줄 수 있구나~