SWiSH Player Support
SWF5 or later - Supported Internally
Syntax
DateObj.getUTCFullYear()
Arguments
none
Returns
an integer
Description
Method; returns an integer (4-digit number) representing the current full year for the Date Object according to Universal Time.
Sample
onFrame (1) {
theDate = new Date();
trace(theDate.getUTCFullYear());
}