I have created an addDay method which takes a date as a parameter and then adds
34 * 60 * 60 * 1000 to it, creates a new date and returns it, but the returned
date is not accounting for daylight savings time. Not sure if I am using the
incorrectly or if it is a bug.

Chester

public static function addDay(tempDate:Date):Date {
var newDate:Date = new Date(tempDate.valueOf() + (24 * 60 * 60 * 1000));
return newDate;
}