Hi All, I notice something strange (using sdk 0.9.9), take this code :
var d1:Date = new Date();
d1.hours = d1.minutes = d1.milliseconds = 0;
trace ("d1->" + d1.getTime());
var d2:Date = new Date();
d2.hours = 0;
d2.minutes = 0;
d2.milliseconds = 0;
trace ("d2->" + d2.getTime());
It will show this result :
d1->NaN
d2->1652824822000
Do I need to report this as an issue ? or X = Y = Z = 0 is a bad
practice in as3 (or I'm wrong using Date ?) ?
Regards Fred
