GetDateYear

Returns a four-digit numeric value that is the year of the current date.

Command

Parameters

Value returned

"GetDateYear"

None.

-1: Not supported.

0 to 9999: The current year.

Availability

Flash Lite 1.1.

Example

The following example collects the date information and constructs a complete date string:

today = fscommand2("GetDateDay"); 
weekday = fscommand2("GetDateWeekday");
thisMonth = fscommand2("GetDateMonth"); 
thisYear = fscommand2("GetDateYear"); 
when = weekday add ", " add thisMonth add " " add today add ", " add thisYear;

See also

GetDateDay, GetDateMonth, GetDateWeekday