ActionScript 2.0 Language Reference |
|
|
|
| ActionScript classes > Date > getMilliseconds (Date.getMilliseconds method) | |||
public getMilliseconds() : Number
Returns the milliseconds (an integer from 0 to 999) of the specified Date object, according to local time. Local time is determined by the operating system on which Flash Player is running.
Availability: ActionScript 1.0; Flash Player 5
Number - An integer.
The following example uses the constructor to create a Date object based on the current time and uses the getMilliseconds() method to return the milliseconds value from that object:
var my_date:Date = new Date(); trace(my_date.getMilliseconds());
|
|
|
|