How to add wait time between each step?

Hi guys , how to add wait time between each step ? I mean is there command to add it one time so it apply waiting time for all commands

Add pause command with your custom value in this case this wait 5 seconds


    {
      "Command": "pause",
      "Target": "5000",
      "Value": "",
      "Description": ""
    },

thanks I know about this command but what I need is to add the command one time so it apply to all steps , I have so log map and adding pause manual for each one will take long time

What do you mean by step?
explain well how you created the macro codes and how they work because step is not a ui vision command and I don’t understand what you are referring to

I mean between each command / line

I’ve created a way to easily add pauses between macros, simply create a macro containing the PAUSE command and run it after each macro

Run Macro1 (batch file)
Run MacroPause (batch file)
Run Macro2 (batch file)
Run MacroPause (batch file)
Run Macro3 (batch file)
Run MacroPause (batch file)

Inside MacroPause you can add your custom code with pause

You can use

store | FAST / MEDIUM / SLOW | !replayspeed

FAST = no delay between each step
MEDIUM = 0.3s delay between each step
SLOW = 2s delay between each step