<?xml
version="1.0" encoding="utf-8"?>
<mx:Application
verticalAlign="middle" horizontalAlign="center"
paddingBottom="0"
paddingLeft="0" paddingRight="0"
paddingTop="0"
xmlns:mx="http://www.adobe.com/2006/mxml" layout="vertical">
<mx:Script>
<![CDATA[
private const ratio:Number = .75;
override protected function updateDisplayList(unscaledWidth:Number,
unscaledHeight:Number):void{
super.updateDisplayList(unscaledWidth,unscaledHeight);
btn.width =
unscaledWidth;
btn.height =
unscaledHeight;
var tmpRatio:Number = btn.height / btn.width;
if(tmpRatio>ratio){
btn.height =
btn.width * ratio;
}else{
btn.width =
btn.height / ratio;
}
}
]]>
</mx:Script>
<mx:Button id="btn"
width="100%" height="100%"/>
</mx:Application>
'etc > old' 카테고리의 다른 글
[Android] LayoutInflater - 저 수준 번역 (0) | 2009.07.29 |
---|---|
[FLEX] labelRenderer 적용을 통한 Legend 유사효과 창출 ? (0) | 2009.07.28 |
구글, 최신 안드로이드OS 공개…멀티터치 제외 (0) | 2009.07.28 |
[Android] 네이버 실시간 순위 보여주기 (0) | 2009.07.26 |
"3세대 아이팟터치, 2~3개월내 출시" (0) | 2009.07.23 |