getMinutes()
Top  Previous  Next


SWiSH Player Support
SWF5 or later - Supported Internally

Syntax
DateObj.getMinutes()

Arguments
none

Returns
an integer

Description
Method; returns an integer (from 0 to 59) representing the current minute of the Date Object according to Local Time.

Sample

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


// If it is 5:38pm on your system clock - "38" will be returned in the debug window.