Difference between revisions of "SendKeysWait"
From SCAR Divi Manual
(Created page with "==Definition== <source lang="scar" lines="false"> procedure SendKeysWait(const Str: AnsiString; const WaitTime, RndTime: Integer); </source> ==Availability== SCAR Divi 3.00 > Cu...") |
|||
Line 14: | Line 14: | ||
begin | begin | ||
Wait(5000); | Wait(5000); | ||
− | SendKeysWait('Hello World!', 20 | + | SendKeysWait('Hello World!', 40, 20); |
end. | end. | ||
</source> | </source> |
Revision as of 22:05, 24 October 2011
Definition
procedure SendKeysWait(const Str: AnsiString; const WaitTime, RndTime: Integer);
Availability
SCAR Divi 3.00 > Current
Description
Sends the string given in Str to the active foreground window by emulating keystrokes on the keyboard. The wait time between each key is specified by WaitTime and supplemented by a random value from the interval [0,RndTime - 1].
Example
begin Wait(5000); SendKeysWait('Hello World!', 40, 20); end.