Ok, Jayred helped me understand the time offset is needed if you are not on
GMT time (2nd reply of his):

http://groups.google.com/group/google-calendar-help-dataapi/browse_thread/thread/f11c3d6d5dda7c38

And then I read this (4.2 Local Offsets section):

http://www.ietf.org/rfc/rfc3339.txt

So, they said I could basically subtract my local timezone from UTC to get
the offset (I think).  So, booted up Flash, and did this:

// currently 11:34pm when code was run
var d:Date = new Date();
trace(d.getHours());      // prints out 23
trace(d.getUTCHours());   // prints out 4

Rad.  So, my time offset would be:

-04:00

Correct?

Meaning, the date string I'd send would sort of look like:

http://www.google.com/calendar/feeds/[removed some id
thinghere]%40group.calendar.google.com/private/full?start-min=2007-02-18T00:00:00-04:00&start-max=2007-02-18T23:59:59-04:00

???

--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups 
"Google Calendar Data API" group.
To post to this group, send email to 
[email protected]
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/google-calendar-help-dataapi?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to