일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | |||
5 | 6 | 7 | 8 | 9 | 10 | 11 |
12 | 13 | 14 | 15 | 16 | 17 | 18 |
19 | 20 | 21 | 22 | 23 | 24 | 25 |
26 | 27 | 28 | 29 | 30 | 31 |
- 3D
- Silverlight
- Air
- 주식
- API
- Genome2D
- 3.0
- 어도비
- Microsoft
- 도서
- starling
- 실버라이트
- framework
- Papervision
- Papervision3D
- 마이크로소프트
- 물리엔진
- Flex
- 플래시
- 책
- stage3d
- ActionScript
- adobe
- 액션스크립트
- 워렌 버핏
- XAML
- 플렉스
- 아폴로케이션
- Flash
- 아폴로
- Today
- Total
목록플래시/플렉스[Flash/Flex] (164)
WonHada.com으로 이전
아래와 같이 한줄만 써주면 확인 가능합니다..trace(Security.sandboxType, Capabilities.playerType); 결과는 아래와 같습니다..플래시에서 컴파일 : localTrusted, External로컬에서 실행 : localWithFile, StandAlone서버에서 실행 : remote, ActiveX
라이브러리에 있는 비트맵 이미지를 가져와서 addChild() 하는 방법입니다.. 첨부파일 확인하시면 이해가 빠르실듯..var bitmapData:BitmapData = new bitmapSample(0, 0);//파라미터는 상관없음 addChild(new Bitmap(bitmapData)); /* //클래스명을 String으로 받는 방법 var b:Object = getDefinitionByName("bitmapSample"); var bitmapData:BitmapData = new b(0,0); addChild(new Bitmap(bitmapData)); */
ComboBox의 텍스트 색상을 변경하기 위해서는 내부 인스턴스에 접근해야 합니다..textField와 dropdown 속성을 통해 TextInput과 List의 스타일을 변경할 수 있습니다.. //cb는 콤보박스var tf:TextFormat = new TextFormat();tf.font = "dotum";tf.color = 0xFF0000;cb.textField.setStyle("textFormat", tf);cb.dropdown.setRendererStyle("textFormat", tf);