event.time

Type Number
Event enterFrame
Revision 2017.3060
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)