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.
Actionscript:
-
import DateFormatter;
-
var testDate:Date = new Date();
-
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