Flex Explorer

Java&Flex 2008. 8. 28. 13:55

Style Explorer - http://weblogs.macromedia.com/mc/archives/FlexStyleExplorer.html Component Explorer - http://examples.adobe.com/flex2/inproduct/sdk/explorer/explorer.html Filter Explorer - http://merhl.com/flex2_samples/filterExplorer/

Flex - Alert창 아이콘 변경(버튼크기, 메시지 이상)

Java&Flex 2008. 8. 28. 13:43

global { modalTransparencyBlur: 0; modalTransparency: 0.8; modalTransparencyColor: black; modalTransparencyDuration: 500; } /* 버튼 스타일 */ .roundedAlertButtons { cornerRadius: 10; fontWeight: bold; color: black; } /* Alert메시지 스타일 */ .alertMessageStyle{ fontSize: 15; fontWeight: bold; color: yellow; } /* Alert 스타일*/ Alert{ messageStyleName : "alertMessageStyle"; buttonStyleName : "roundedAlertButto..