목록개발 (157)
SNOWFLAKES DRAWING PAPER
http://starpl.com/jidolstar/10052454 designpatternscard.pdf 자료출처 : http://www.mcdonaldland.info/2007/11/28/40/
어도비 모든 제품 라이센스 정책 http://www.adobe.com/kr/products/eulas/
Flex3 Command Line Debugging ( Library 포함 ) 그냥 커멘드라인 컴파일은 할 수 있었다.. 외부 라이브러리 파일을 만들어서 자주 사용하기 때문에 라이브러리 파일을 포함한 커멘드라인 컴파일을 해본다.. ( 아래 내용은 MS윈도우에 커멘드창( 실행(윈도우키 + R)에서 "cmd" )에서도 사용법은 같다 ) 아래와 같은 방식으로 다른 옵션을 적용 참고 소스는 그냥 라이브러리에 있는 함수를 사용하는 간단한 소스이다 fzOoLib.swc > fzOo.utils.TEST 소스내용 : 테스트시 자식을 확인하기위해 만들었던 함수다.. package fzOo.utils { import mx.core.UIComponent; public class TEST { public static func..
Ubuntu에서 Flex3 Command Line Debuging.. # 환경설정 - Fled3 SDK 설치 1. http://www.adobe.com/cfusion/entitlement/index.cfm?e=flex3email&promoid=DJGYF 에서 다운로드 2. ~/Pakages/flex 위치에 압축풀기 (개인^^) - Flashplayer Debug Version 설치 1. http://www.adobe.com/support/flashplayer/downloads.html 에서 Linux버전 다운로드 2. plugin/debugger 위치에 install_flash_player_10_linux.tar.gz 파일 압축풀고 3. ./flashplayer-installer * 수동설치 : 위 사항..
download http://labs.adobe.com/downloads/flexbuilder_linux.html install (Ubuntu) # sudo sh [FileName] http://ubuntuforums.org/showthread.php?t=947728&page=2
Actionscript 3.0 Event에 대한 질문/답변 http://blog.jidolstar.com/415 1. ActionScript 3.0 이벤트(Event) 1.1 ActionScript 2.0과 3.0에서 이벤트가 바뀐점은? 1.2 Event를 사용해야하는 이유? 2가지 이상 2. Event의 구성요소 3가지는 무엇이고 의미를 설명하라. 3. Event Listener를 등록/삭제하는 방법을 기술하라. 4. Event 전파단계의 종류 3가지가 무엇이며 각각에 대한 설명 5. 4번의 Event 전파는 어떤 환경에서 가능한가? 6. 이벤트 전파시 target과 currentTarget의 차이점은 무엇인가? 예를 들어 설명하라. 7. Event 우선순위에 대해서 간단한 예제를 들어 설명하라. 8...
AIR 한글 삭제문제 해결하기 http://cafe.naver.com/flexcomponent/13763
http://cafe.naver.com/flexcomponent/13754
TextFormat을 사용하는 중 색이 rgb 숫자로 들어가게 된다 예를 들어 trance(TextFormat["color"]) 출력 : 13553358 다시 hex로 변환은 var ct:ColorTransform = new ColorTransform(); ct.color = value; trance String( ct.color.toString(16) );
작업 할때 가끔 색 값을 가져오기 위해서 Flex Style Explorer 사이트에서 ColorPicker 띄워서 색 값을 확인 했었는데 확인할려고 방문 하다보니 불편해서 개인적으로 사용할려고 소스 가져와서 수정
http://help.adobe.com/ko_KR/ActionScript/3.0_ProgrammingAS3/
개발 참고시 FlexComponent 사이트를 참고 한다 네트워크가 끊겼을때 참고 할수 없는 단점이 있어 "이러한 컴퍼넌트를 만들까?" 하고 생각한적은 많았지만 생각에서 끊기고 실행에 옮기기에는 쉽지 않았다... 그런데 닉네임 열이아빠 님의 블로그에서 소개해준 컴퍼넌트..^^ 어~예! ㅎㅎ 아래 사이트에서 Install을 클릭하면 다운받아진다.. http://flex.org/tour
MXML 2009 스펙 http://opensource.adobe.com/wiki/display/flexsdk/MXML+2009
데이터 그리드의 horizontalGridLineColor, horizontalGridLines를 설정하면 row마다 줄이 보인다 그런데 전체 row 라인이 보여주는 기능이 되어 있어 부분 라인 보여주는 기능을 한번 건드려봤다 아래 소스(mxml)는 라이브독에 Example 소스를 약~간! 수정한 소스이다 기존 소스에서 수정한 부분은 다른 색으로 구분하였다 mxml Christina Coenraets 555-219-2270 ccoenraets@fictitious.com true Joanne Wall 555-219-2012 jwall@fictitious.com true Maurice Smith 555-219-2012 maurice@fictitious.com false Mary Jones 555-219-20..
문자열 더하기 방법 성능비교! http://cafe.naver.com/flex4u/1092 첫번째 for (var i:int = 0; i < 500000; ++i ){ testString += [문자열1] + [문자열2] + [문자열3]; } 두번째 testArr = []; for (var j:int = 0; j < 500000; ++j ){ testArr.push([문자열1]); testArr.push([문자열2]); testArr.push([문자열3]); } testString = testArr.join(""); 세번째 for (var k:int = 0; k < 500000; ++k ){ testString += new String().concat( [문자열1] ,[문자열2] ,[문자열3]); } 결..
http://cafe.naver.com/flexcomponent/11293 The events in more detail: - preinitialize()is dispatched when the component has been attached to its parentcontainer, but before the component has been initialized, or any of itschildren have been created. In most cases, this event is dispatched tooearly for an application to use to configure a component. - initialize() is dispatched whena component has..
MXML ... import fzOo.ssr.ReturnValue; private function init():void { var arrPosition:Array=[]; for (var i:int=0; i
Essential ActionScript 3.0 http://riabook.googlecode.com/files/Essential.ActionScript.3.0.pdf http://code.google.com/p/riabook/downloads/detail?name=Essential.ActionScript.3.0.pdf&can=2&q=
Interface 란 무엇일까 ? http://blog.naver.com/lp7176/30035463988 http://blog.naver.com/lp7176/30035464130
마우스 오버시 row에 rollOverColor를 데이터에 따라 색이 틀리게 적용하기 위해 DataGrid Row에 인덱스 값을 찾기위한 작업이다 먼저 DataGrid 아래 4가지 자식이 생성된다 ================================== indexNum : 0 / childName : HaloBorder37 / childFull : test_Sample0.AlertLogGrid28.dg.HaloBorder37 / X:Y=0:0 / Width:Height=795:99 indexNum : 1 / childName : mask / childFull : test_Sample0.AlertLogGrid28.dg.mask / X:Y=1:1 / Width:Height=793:97 indexNum ..
DisplayObjectPosition.mxml import flash.events.Event; import mx.controls.Image; [Embed(source='s_air.jpg')] private var airimg:Class; private var _matrix:Matrix; private function init():void{ img.source = airimg; hs1.value = 1; hs2.value = -.3; hs3.value = .05; hs4.value = 1; _matrix = imgbx.transform.matrix; //imgbx.verticalScrollPolicy = "on"; //imgbx.horizontalScrollPolicy = "on"; imgbx.trans..
Flex에서 Flex Library Project로 SWC를 만들게 된다. 이때, 제작된 Class들은 각자의 namespace안에 들어가 있으므로 아래와 같이 작성해야할 것이다. 위 코드에서 볼 수 있듯이 Map, MiniMap, ZoomControl 컴포넌트들은 각각 다른 namespace(각각 map,minimap,controller)를 가지게 되기 때문에 사용하기 불편하다. 위 코드처럼 Flex SDK에서 제공하는 컴포넌트에서 mx를 사용하듯이 namespace인 map으로 사용하고 싶다면 다음과 같은 과정을 따라서 SWC를 만들면 되겠다. http://blog.jidolstar.com/372
Creating a SWC Component in FlashDevelop http://blog.log2e.com/2008/05/07/creating-a-swc-component-in-flashdevelop/
기존 소스에서 데이터 변경시 효과만 넣어 보았다~ import mx.controls.Button; private function init():void { var btn:Button = new Button(); btn.label = "DataChange"; btn.addEventListener(MouseEvent.CLICK, dataChangeEvt); this.addChild( btn ); } private var dataFlag:Boolean = true; private function dataChangeEvt(e:MouseEvent):void { if (dataFlag) { chart.dataProvider = dataSet2.Sample; } else { chart.dataProvider = dat..
라이브독 기존 소스에서 - 데이터 변경시 Effect(SeriesInterpolate) 실행 - 배경이미지 넣는 소스(주석처리) - Stroke 설정 import mx.controls.Button; import mx.graphics.SolidColor; import mx.charts.renderers.CircleItemRenderer; import mx.charts.renderers.LineRenderer; import mx.collections.ArrayCollection; [Bindable] private var expensesAC:ArrayCollection = new ArrayCollection( [ { Month: "Jan", Profit: 2000, Expenses: 1500, Amount: ..
차트를 만져보지 않아서 트레이닝이 필요한 상태여서 그냥 한번 만져 보았다 라이브독 기존 소스는 Gold 필드만 출력되어 있어 버튼 클릭시 필드(Gold, Silver, Bronze) 변경하면서 Effect(Zoom) 일어나도록 수정해봤다 PieChart 그냥 만져 보기~ import mx.controls.Button; import mx.collections.ArrayCollection; [Bindable] private var medalsAC:ArrayCollection = new ArrayCollection( [ { Country: "USA", Gold: 35, Silver:39, Bronze: 29 }, { Country: "China", Gold: 32, Silver:17, Bronze: 14 },..
Java 다운받아서 설치시 아래와 비슷한 오류가 날때가 있다 http://java.sun.com/javase/downloads/index.jsp bin\???????: Old File not found. However, a file of the same name was found. No update done since file contents do no match.. [그림] Java 설치 오류 아래 그림과 같이 Java SE & JDK Source Code 를 받아서 설치하면 정상 설치된다 [그림] Java SE & JDK Source Code
1. Flex3 SDK 설치 - Download : http://www.adobe.com/products/flex/flexdownloads/ [그림] ADOBE Flex3 SDK 다운로드 페이지 - 압축을 임의 폴더 지정해서 푼다 ( 예>C:\Flex3_SDK ) - [제어판] > [시스템] > [고급] 탭 > [환경변수] 버튼 선택 해서 ANT_HOME 환경변수 설정해준다 변수이름 : ANT_HOME 변수값 : C:\Flex3_SDK\ant (SDK를 C:\Flex3_SDK에 설치했기때문) [그림] 시스템 환경변수 설정 2. .NET Framework 설치 FlexDevelop는 .NET Framework 2.0 이상에서 돌아가기때문에 설치가 안되어 있을경우 설치하라는 오류 메세지가 뜬다 - 2.0 D..
개발환경이 메모장이나 Notepad++ 환경에서 하기위해 옵션 숙지는 필수 일것 같다~ㅎㅎ 참고 : http://livedocs.adobe.com/flex/3/html/compilers_14.html#157203 http://cafe.naver.com/flexcomponent/10602 * static linking에 이용되는 옵션 library-path, include-libraries * dynamic linking에 이용되는 옵션 external-library-path, externs, load-externs * 익스터널 라이브러리 적용방법 mxmlc -link-report=report.xml ModuleLoaderApp.mxml mxmlc -load-externs=report.xml ModuleS..
최근 발표된 JDK 6.0을 설치한 Windows PC에서 Tomcat을 서비스로 등록하여 시작하려고 하면 문제가 발생하는 경우가 있다. 이 경우 Tomcat의 logs 디렉토리에서 jakarata_services_yyyymmdd.log 파일을 열어보면 다음과 같은 에러 메시지를 발견할 수 있다. [2007-04-10 14:51:59] [174 javajni.c] [error] The specified module could not be found. [2007-04-10 14:51:59] [947 prunsrv.c] [error] Failed creating java C:\Java\jdk1.6.0\jre\bin\server\jvm.dll [2007-04-10 14:52:00] [1202 prunsrv.c..