
Im wondering how to make multiple Timer actions or somehow delay action for xx seconds ?
I have a code in one Timer and i want without ending same Timer to start another Timer to delay an action and return to position where action stopped.
example :
Timer1
:time
.
.
FileWrite "[PubDir]tsr.bat" "All" "tasklist /fi [#34]USERNAME ne NT AUTHORITY\SYSTEM[#34] /fi [#34]STATUS eq running[#34] >[#34][PubDir]tsr.ch[#34]"
Run "[PubDir]tsr.bat" "" "RunOnce+Wait+Hidden" "" ""
FileRead "[PubDir]tsr.ch" "All" "[TskRead111]"
InternetPost "HTTP location" "finfo=[HDSerialNum]&data=[TskRead111]" "[OK1]" ""
FileErase "[PubDir]tsr.bat"
FileErase "[PubDir]tsr.ch"
IsAppRunning "[LOCATION]\program_sa.exe" "[Start]"
If "[Start]" "=" "True"
Timer2 = Here i need another timer to wait for a xx seconds and continue the script
GotoLine "time"
I hope you understand what i need