반응형
Content folder와 Outtput folder명은 같게 설정
Flex WAR file은 lcds.war 필요
main application file : index.mxml
index.html을 실행해서 플렉스를 확인한다.
custom - 사용자 정의 컴포넌트
controls - 기능(데이터 포함 or 비포함 기능)
layout - 화면 배치
navigator - 메뉴
charts - 차트
화면배치
layout, navigators
컨트롤배치
controls
소스처리
액션스크립트 처리
<?xml version="1.0" encoding="utf-8"?>
<mx:Application xmlns:mx="http://www.adobe.com/2006/mxml" layout="absolute" xmlns:ns1="comp.*" initialize="showMsg()">
<mx:Script>
<![CDATA[
import mx.controls.Alert;
private function showMsg():void{ //리턴타입은 뒤에 적는다.
//mx.controls 패키지
//alert 클래스
//show 매서드
ta1.text = btn1.label;
ta1.text = ta1.text + '\n' +ch1.label +"" + ch1.selected;;
ta1.text = ta1.text + '\n' +ch2.label +"" + ch2.selected;
//ta1.text = btn1.states;
}
]]>
</mx:Script>
<mx:Button id="btn1" x="10" y="10" label="버튼1" click="showMsg()"/>
<mx:TextInput id="ta1" x="10" y="171" width="303" height="91"/>
<mx:CheckBox id="ch1" x="10" y="40" label="사과"/>
<mx:CheckBox id="ch2" x="10" y="70" label="수박"/>
</mx:Application>
반응형
'Study > Programming' 카테고리의 다른 글
자바 가비지, 컬렉션(Gabage Collection), 가비지 컬렉터(Gabage Collector) (1) | 2010.01.20 |
---|---|
플렉스 채팅 프로그램 (0) | 2009.08.14 |
JSP 게시판 만들기 (2) | 2009.07.27 |
JAVA Study (0) | 2009.07.21 |
servlet 기본 골격 (0) | 2009.06.15 |