getUTCMilliseconds()
Top  Previous  Next


SWiSH Player Support
SWF5 or later - Supported Internally

Syntax
DateObj.getUTCMilliseconds()

Arguments
none

Returns
an integer

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

Sample

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