HomeAbout

DateTime

from the site:

A Date class that has better structure, and resembles higher level languages, specifically C#.

http://www.createage.com/blog/?p=45 

Date Formatter

Format date timestamps by using various strings.

http://www.yapiodesign.com/blog/2005/11/10/dateformatter-static-class-update-of-darron-schalls-dateformatas/

Actionscript:
  1. import DateFormatter;
  2. var testDate:Date = new Date();
  3. trace(DateFormatter.formatTo(testDate, "mm/dd/yyyy"));

XDate

Extends the Date class and adds new methods:

  • getDayOfWeek
  • isSunday
  • isMonday
  • isTuesday
  • isWednesday
  • isThursday
  • isFriday
  • isSaturday
  • isWeekend
  • setDaysInMonth
  • get daysInMonth
  • getDaysLeftInMonth
  • get daysInYear
  • monthStartDate
  • monthEndDate
  • setWeeksInMonth
  • getWeeksInMonth
  • get daysInWeeks
  • get daysInWeek
  • getDay
  • getDayName
  • getMonthName

http://www.somerandomdude.net/blog/flash/actionscript-date-extension-class/

W3CDateTime

From the class:

Represents a date in the W3CDateTime format as described in http://www.w3.org/TR/NOTE-datetime

http://weblogs.macromedia.com/mesh/archives/2004/02/w3cdatetime_act.html