Recent Posts
Recent Comments
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
Tags
- FLVPlayback
- Renewal
- Demo
- papervision3d
- wireless keyboard
- ubuntu touch
- red5
- smoothing
- 비트맵리사이즈
- javascript
- flash
- TweenMax
- fd3
- debuger
- Lifefilm
- publish setting
- 단말 테스트
- Movieplayer
- android studio
- os x
- 가로
- SWFObject
- flashplayer
- complie
- Alpha
- FlashDevelop
- ExteranlInterface
- cocos2d-x
- FLV Player
- ios
Archives
- Today
- Total
ALL ABOUT ME
Flash :: 올플래시 리사이즈 본문
.Variable
resizeW - 리사이즈된 스테이지 넓이;
resizeH - 리사이즈된 스테이지 높이;
.Code
private function Resize_Init(){
resizeW = 1024;
resizeH = 768;
stage.addEventListener(Event.ACTIVATE, activateHandler);
stage.addEventListener(Event.RESIZE, resizeHandler);
}
private function activateHandler(e:Event){
//trace("activateHandler: " + e);
resizeW = Math.floor(stage.stageWidth);
resizeH = Math.floor(stage.stageHeight);
}
private function resizeHandler(e:Event) {
//trace("resizeHandler: " + e);
resizeW = Math.floor(stage.stageWidth);
resizeH = Math.floor(stage.stageHeight);
}
resizeW - 리사이즈된 스테이지 넓이;
resizeH - 리사이즈된 스테이지 높이;
.Code
private function Resize_Init(){
resizeW = 1024;
resizeH = 768;
stage.addEventListener(Event.ACTIVATE, activateHandler);
stage.addEventListener(Event.RESIZE, resizeHandler);
}
private function activateHandler(e:Event){
//trace("activateHandler: " + e);
resizeW = Math.floor(stage.stageWidth);
resizeH = Math.floor(stage.stageHeight);
}
private function resizeHandler(e:Event) {
//trace("resizeHandler: " + e);
resizeW = Math.floor(stage.stageWidth);
resizeH = Math.floor(stage.stageHeight);
}
'Lab' 카테고리의 다른 글
Flash :: Red5 - Flash Media Server 사용 (0) | 2009.05.15 |
---|---|
Flash :: Red5 - Flash Media Server 설치 (0) | 2009.05.15 |
Flash :: 가로, 세로 정렬!! (0) | 2009.04.28 |
Flash :: Bitmap Resize (0) | 2009.04.17 |
Flash :: FLVPlayback video smoothing (0) | 2009.04.16 |
Comments