일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- 책이야기
- express for node.js
- ror실행
- Node.js
- 메일왕창보내는법
- Eclipse
- php thumbnail
- 나의 취미
- 스킨 스쿠버
- 도커
- node.js web framework
- php
- 주식이야기
- scala
- ejb
- docker
- 베트남어
- rss
- 명사 추출기
- ajax
- Lift
- 디즈니씨
- 나의 프로젝트
- 명사 뽑아내기
- Cross
- nodejs express
- iBatis
- C/C++
- flex3
- 명사 분석기
- Today
- Total
목록My Programing/ActionScript (21)
nkdk의 세상
package{ import flash.display.Loader; import flash.display.DisplayObjectContainer; import flash.events.ProgressEvent; import flash.events.Event; import flash.net.URLRequest; import flash.display.DisplayObject; public class CLoaderUI extends CLoadAni{ var pLoader:Loader = new Loader(); var pRequest:URLRequest = new URLRequest(); var pContainer:DisplayObjectContainer; var pWidth:Number, pHeight:Nu..
자 이제 본격적으로 디자인으로 들어가네요. 한걸음씩 갑시다. 일단 ctrl-f7 을 눌러서 버튼 콤포넌트를 열고 ctrl+l 을 눌러서 라이브러리 윈도우를 엽니다. 그리고 버튼 컴포넌트를 라이브러리에 추가시킵니다. 버튼에서 오른쪽 마우스를 눌러 Linkage 를 클릭해서 내용을 봅시다. 일단 이렇게 추가가 되었다면.. 라이브러리에 있는 걸 써야 겠죠? import fl.controls.Button; import flash.net.navigateToURL; import flash.net.URLRequest; var mButton:Button = new Button(); stage.addChild(mButton); var mButton2:Button = new Button(); mButton2.x=200; ..
Flex 프레임워크 다이어 그램 입니다 ^_^
var mButton:SimpleButton = new SimpleButton(); var mUpShape:Shape = new Shape(); var mDownShape:Shape = new Shape(); var mOverShape:Shape = new Shape(); var mhitTestShape:Shape = new Shape(); mButton.overState=mOverShape; mButton.upState=mUpShape; mButton.downState=mDownShape; mButton.hitTestState=mhitTestShape; function draw(mShape:Shape, mColor:uint, mWidth:uint, mHeight:uint):void{ mShape.gra..