I want to run the loop at the first second of every minute. If the loop starts without the first second, it will wait to start at the next minute. thank you.
Ex:
- label | check
- If | first second
- Play some thing
- Else
- Goto | check
- End.
I want to run the loop at the first second of every minute. If the loop starts without the first second, it will wait to start at the next minute. thank you.
Ex:
Use executeScript_Sandbox and GetSeconds
executeScript_Sandbox | var d = new Date(); var n = d.getSeconds(); return n; | sec
if parseInt(${sec}) < 2
…