getUTCMilliseconds()
Top  Previous  Next


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