var LastDayOfMonth:Number = new Date(2008, 3, 0).getDate() as Number;
//Trace should yield 31
trace(LastDayOfMonth);
//Trace should yield 31
trace(LastDayOfMonth);
Date 객체를 년, 월 만 넣고 날짜는 0을 넣고 생성하면 그 객체의 day 속성은 마지막 날짜가 된다. ㅎㅎ
출처 : http://molaro.wordpress.com/2008/02/07/actionscript-determing-the-number-of-days-in-a-month/
'Flex / AIR / AS' 카테고리의 다른 글
[CSS] 스타일시트로 배열값을 받아 사용하기. (0) | 2009.08.19 |
---|---|
DateFormatter 사용하기. (0) | 2009.08.17 |
IUITextField 를 사용하자. (0) | 2009.08.08 |
ResourceBundle 사용하기. (0) | 2009.06.18 |
[Flex3.0] Box로 구현한 Drag and Drop (0) | 2009.06.11 |