SendKeysWait

From SCAR Divi Manual
Jump to: navigation, search

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.

See Also