ActionScript 2.0 Language Reference |
|
|
|
| ActionScript classes > Date > getUTCMilliseconds (Date.getUTCMilliseconds method) | |||
public getUTCMilliseconds() : Number
Returns the milliseconds (an integer from 0 to 999) of the specified Date object, according to universal time.
Availability: ActionScript 1.0; Flash Player 5
Number - An integer.
The following example creates a new Date object and uses getUTCMilliseconds() to return the milliseconds value from the Date object.
var today_date:Date = new Date(); trace(today_date.getUTCMilliseconds());
|
|
|
|