getTime()
Top  Previous  Next


SWiSH Player Support
SWF5 or later - Supported Internally

Syntax
DateObj.getTime()

Arguments
none

Returns
an integer

Description
Method; returns an integer representing the number of milliseconds that have passed since midnight January 1, 1970 (universal time) for the Date Object.

Sample

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