getUTCDate()
Top  Previous  Next


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());
}