Can i play loop at the first second of every minutes?

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.

Use executeScript_Sandbox and GetSeconds

  • executeScript_Sandbox | var d = new Date(); var n = d.getSeconds(); return n; | sec

  • if parseInt(${sec}) < 2

1 Like