Ask a Question related to Macromedia Flex General Discussion, Design and Development.
-
Chester Copperpot #1
Flex 2 Beta 3 date & daylight savings time issue
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;
}
Chester Copperpot Guest
-
Daylight Savings Time
Using the Date object, I can get the timezone (eg: GMT-4 is current for EDT, EST would return GMT-5). WHat I need help with is determining, from a... -
Daylight Savings Time fix and CFDOCUMENT
After our webmaster installed the JVM update (1.4.2_13) to correct the DST issue, I discovered that CFDOCUMENT doesn't seem to function. Has anyone... -
CF MX and Daylight Savings Time Change
Next year 2007, the Daylight Saving day (chaning the clocks for spring and fall) will be changing. The Spring date will be a month earlier and the... -
[PHP] Timezones and Daylight Savings Time
What if you set the server to use UTC and then used the clients local system setting to offset it for each client? So the server would have it's... -
accounting for daylight savings time
Hi If you need to account for daylight savings, you could use the following SQL query to detect the same select SYSDATE x, 0 r1 from dual where...



Reply With Quote

