플렉스 빌더 3 + LiveCycle Data Services ES Express(lcds) 설치

Java&Flex 2008. 9. 4. 02:39

설치할 파일을 adobe.com 사이트에서 다운받는다. 플렉스 빌더 3 http://www.adobe.com/cfusion/entitlement/index.cfm?e=flex3email 플렉스 빌더는 플렉스를 좀더 쉽게 개발하기 위한 툴이다. SDK 만 다운받아도 플렉스는 개발할 수 있다. LiveCycle Data Services ES Express(lcds) https://www.adobe.com/cfusion/tdrc/index.cfm?loc=ko&product=livecycle%5Fdataservices lcds 같은 경우에는 adobe 계정이 있어야한다. 간단하게 등록하고 받도록 한다. 두 파일을 다운받았으면 설치를 시작한다. 우선 플렉스 빌더 3 부터 설치한다. 전부다 디폴트로 설치했다. (계..

Article Thumbnail
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..