Date.getTimezoneOffset( ) Method

ActionScript for Flash MX: The Definitive Guide, 2nd Edition
By Colin Moock
Chapter 18.  ActionScript Language Reference
Date.getTimezoneOffset( ) Method Flash 5

the number of minutes between local time and UTC (a.k.a. GMT)
date.getTimezoneOffset()

Returns

An integer representing the current number of minutes between the local time zone and the actual UTC (Greenwich meridian) time positive if local time is behind UTC; negative if local time is ahead of UTC. Includes adjustments for local daylight savings time depending on the day of the year.

Example

When invoked in Eastern Daylight Time (EDT) during daylight savings, the following code returns the value 240 (240 minutes is 4 hours):

myDate = new Date(); trace(myDate.getTimezoneOffset());  // Displays: 240

However, when invoked in EDT, during non-daylight savings times of year, the same code returns 300 (300 minutes is 5 hours), which is the offset between Eastern Standard Time (EST) and UTC.



    ActionScript for Flash MX. The Definitive Guide
    ActionScript for Flash MX: The Definitive Guide, Second Edition
    ISBN: 059600396X
    EAN: 2147483647
    Year: 2002
    Pages: 780
    Authors: Colin Moock

    flylib.com © 2008-2017.
    If you may any questions please contact us: flylib@qtcs.net