Time object¶
myTime = new Time();
Description
An object representing a time. Internally, the time is computed in ticks
; there are 254016000000 ticks per second. That time can be accessed in different representations, including as a timecode string.
Attributes¶
Methods¶
Time.getFormatted()¶
myTime.getFormatted(frameRate, displayFormat)
Description
Returns the value of the Time
passed, as a string, formatted in the specified display format.
Parameters
Argument | Type | Description |
---|---|---|
frameRate |
String |
The frame rate to be used, for the String-based time value. |
displayFormat |
int |
The display format to use. Will be one of the following: TIMEDISPLAY_24Timecode = 100;
|
Returns
A String
.
Time.setSecondsAsFraction()¶
myTime.setSecondsAsFraction(numerator, denominator)
Description
Sets the Time object to the result of dividing the numerator by the denominator.
Parameters
Both the numerator and the denominator are ints
.
Returns
Boolean; true
if successful.