getUTCMinutes()
Top  Previous  Next


Syntax
DateObj.getUTCMinutes()

Arguments
none

Returns
an integer

Description
Method; returns an integer (0 - 59) representing the current minute for the Date Object according to Universal Time.

Sample

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