event.time

Type Number
Event enterFrame
Revision Current Public Release (2018.3326)
Keywords enterframe, time

Overview

The time in milliseconds since the start of the application accessible by an enterFrame event listener function (which is called on every frame, until the event listener is removed).

Example

function printTimeSinceStart( event )
    print (event.time/1000 .. " seconds since app started." )
end
Runtime:addEventListener("enterFrame", printTimeSinceStart)