getUTCDate()
Top  Previous  Next


SWiSH Player Support
SWF5 or later - Supported Internally

Syntax
DateObj.getUTCDate()

Arguments
none

Returns
an integer

Description
Method; returns an integer (1 - 31) representing the current day of the month for the Date Object according to Universal Time.

Sample

onFrame (1
{
    theDate = new Date();
    trace(theDate.getUTCDate());
}