getUTCSeconds()
Top  Previous  Next


SWiSH Player Support
SWF5 or later - Supported Internally

Syntax
DateObj.getUTCSeconds()

Arguments
none

Returns
an integer

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

Sample

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