SecondsPassed()

Namespace ›› System ›› Mfunc ›› Methods ››
Parent Previous Next

SecondsPassed()

OutputVar := Mfunc.SecondsPassed(StartTicks)
OutputVar := Mfunc.SecondsPassed(StartTicks, EndTicks)

Mfunc.SecondsPassed(StartTicks)

Gets the number of seconds from StartTicks until Now

Mfunc.SecondsPassed(StartTicks, EndTicks)

Gets the number of seconds between StartTicks and EndTicks

Parameters

StartTicks

The number of Ticks to start the calculation from.

EndTicks

The Number of Ticks to End the calculation.

Remarks

SecondsPassed can be useful when debugging.

Related

MfTimeSpan

Example

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