Содержание

Wait

Stops script execution for a specified time

Syntax

procedure Wait(aMilliseconds: integer);

Parameters

  • aMilliseconds
    • type: integer
    • functions: waiting time

Examples

  1. //Wait for 2 seconds
    Wait(2000);