OutputVar := Mfunc.SecondsPassed(StartTicks)
OutputVar := Mfunc.SecondsPassed(StartTicks, EndTicks)
Gets the number of seconds from StartTicks until Now
Gets the number of seconds between StartTicks and EndTicks
StartTicks
The number of Ticks to start the calculation from.
EndTicks
The Number of Ticks to End the calculation.
SecondsPassed can be useful when debugging.
MyFunction(myVar) {
; do long run running process
}
tStart := A_TickCount
MyFunction(SomeVar)
tEnd := A_TickCount
sec := Mfunc.SecondsPassed(tStart, tEnd)
MsgBox It took %sec% seconds to run Myfunction