본문 바로가기

Flex

(37)
Displaying scroll tips in a List control in Flex
panel link link"; } private function textField_link(evt:TextEvent):void { Alert.show("Success! A Panel container with a link in the status text.", evt.text); } ]]>
fullscreen index.html //창틀없는 풀스크린 function resize(){ window.open("Eis_Main.html","","fullscreen"); //창틀없이 풀스크린으로 뜬다. 호출하는 URL이 IP주소일때는 창틀과 제목표시줄 상태표시줄이 생긴다. window.opener=self; //창을 닫을 때 명령 프롬프트가 뜨지않기 위해 넣어줘야한다. window.close(); } //창틀있는 풀스크린 function resize(){ var width, height; width = screen.width; //화면의 가로폭 height= screen.height; //화면의 세로폭 window.open("Eis_Main.html","","titlebar=yes,status=no,menubar=n..
Flex + Spring 사용하기 http://careerblog.scout.co.kr/home/?pSeq=1620141&blogURL=http://thlife.net/681
FABridge를 사용해 Flex Chart와의 데이터 연동 1.     mxml 설정A.     bridge/FABridge.as 와 FABridge.js를 소스폴더 안에 복사한다.B.     Application에 FABridge 객체를 넣어준다.                         i.         여기에서는 flex라는 bridgeName으로 설정하였다. xmlns:mx="http://www.adobe.com/2006/mxml"        layout="vertical" xmlns:bridge="bridge.*">                          bridgeName="flex"/>             2.     Js 설정A.     어떤이유인지 아직 모르겠지만, flexBuilder 안에 있는 index.template.html..
미국개발자 http://www.tink.ws/blog/files/flex/PairedStackEffectExample.html http://blog.paranoidferret.com/index.php/2007/11/30/the-flex-drop-shadow/
Creating a ControlBar container in Flex using ActionScript import mx.controls.Button; import mx.controls.Text; import mx.containers.ControlBar; import mx.containers.Panel; private var panel:Panel; private var cBar:ControlBar private var txt:Text; private var btn:Button; private function init():void { txt = new Text(); txt.text = "The quick brown fox jumped over the lazy dog."; txt.percentWidth = 100; btn = new Button(); btn.label = "Button"; cBar = new ..
Creating a pop up TitleWindow using the PopUpButton control in Flex 셀렉트박스 클릭시 팝업제어 http://www.cnblogs.com/taobataoma/archive/2008/04/15/1154287.html TitleWindow { roundedBottomCorners: false; borderColor: haloSilver; backgroundColor: haloSilver; borderAlpha: 0.8; backgroundAlpha: 0.8; dropShadowEnabled: false; } import mx.controls.CheckBox; import mx.controls.dataGridClasses.DataGridColumn; private function checkBox_change(evt:Event):void { var ch:CheckBox = evt..