ElapsedMilliseconds()
Syntax
Result = ElapsedMilliseconds()Description
Returns the actual number of milliseconds since the computer has been started. This function is relatively accurate: it can have a slight difference depending on which operating system it runs.StartTime = ElapsedMilliseconds() ; Get the actual value Delay(1000) ; Wait 1000 milliseconds ElapsedTime = ElapsedMilliseconds()-StartTime ; 'ElapsedTime' value should be about 1000 milliseconds
Supported OS
Windows, Linux, MacOS X