Difference between revisions of "Wait"
From SCAR Divi Manual
(Created page with "==Definition== <func>procedure Wait(const ms: Integer);</func> ==Availability== SCAR Divi 3.00 > Current ==Description== Pauses the script for a certain amount of milliseconds ...") |
|||
Line 1: | Line 1: | ||
==Definition== | ==Definition== | ||
− | < | + | <source lang="scar" lines="false"> |
+ | procedure Wait(const ms: Integer); | ||
+ | </source> | ||
==Availability== | ==Availability== |
Revision as of 18:51, 26 June 2011
Definition
procedure Wait(const ms: Integer);
Availability
SCAR Divi 3.00 > Current
Description
Pauses the script for a certain amount of milliseconds specified by ms.
Aliases
- Sleep
Example
begin Wait(5000); end.