Hi
I'm not sure whether it's a bug or what. But it's making my life worse.
I'm doing a Flex 4 application that has a calendar component in an invisible 'state' when I pass comp2.selectedDate(2006,2); and debug at line 3, date has only 2006 year and 0 month.
Why so? Why isn't it getting month = 2 as well?
Thanks in advance
public function selectedDate(year:Number, month:Number, day:* = null):void{
var date:Date = new Date(year, month, day);
dateChooser.selectedDate = date;
}