Difference between revisions of "SendKeysWait"

From SCAR Divi Manual
Jump to: navigation, search
 
Line 26: Line 26:
  
 
[[Category:Functions]]
 
[[Category:Functions]]
[[Category:Keyboard Functions]]
+
[[Category:Deprecated Functions]]

Latest revision as of 01:28, 30 October 2012

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