플렉스 클라이언트의 접속 IP 확인

Java&Flex 2009. 5. 12. 11:26

서버 쪽에서 플렉스의 ip를 가져올 일이 생겼을때... import flex.messaging.*; import javax.servlet.http.*; 임포트 시킨후 HttpServletRequest request; request = FlexContext.getHttpRequest(); String ip = request.getRemoteAddr(); 이렇게 하면 접속 ip를 가져올 수 있다.

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