Announcement

Collapse
No announcement yet.
X
  • Filter
  • Time
  • Show
Clear All
new posts

  • In the do file, can we pause 2 seconds before the execution of some syntax?

    How to do this? Can we use command "pause"?
    Thanks so much!

  • #2
    I see, we can use command "sleep".

    Comment


    • #3
      The -pause- command is not for this purpose. It is used to suspend execution temporarily awaiting keyboard input. To suspend execution for 2 seconds, the command would be:
      Code:
      sleep 2000
      (2000 because 2 seconds = 2000 milliseconds.)

      Added: Crossed with #2.

      Comment

      Working...
      X