--- In [email protected], Tom Chiverton <[EMAIL PROTECTED]> wrote: > > As soon as Flex 3 is open sourced, I'll be submitting the code for inclusion > myself, as a replacement for the current Date.parse() :-) >
Just be sure to alter the endOfDay-function to this one:
/**
* Return the date with (non-UTC) time set to 23:59:59.999
*/
public static function endOfDay(h:Date):Date
{
h.seconds = 59;
h.hours = 23;
h.minutes = 59;
h.milliseconds = 999;
return h;
}
instead of 23:23:23.59
--Johan

