ALL ABOUT ME

Flash :: 올플래시 리사이즈 본문

Lab

Flash :: 올플래시 리사이즈

threeword 2009. 5. 6. 16:45
.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);
}

'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