Difference between revisions of "SendKeys"
From SCAR Divi Manual
(Created page with "==Definition== <source lang="scar" lines="false"> procedure SendKeys(const Str: AnsiString); </source> ==Availability== SCAR Divi 3.20 > Current ==Description== Sends the [[Ans...") |
|||
(One intermediate revision by the same user not shown) | |||
Line 5: | Line 5: | ||
==Availability== | ==Availability== | ||
− | SCAR Divi 3.20 > | + | SCAR Divi 3.20 > 3.34 |
==Description== | ==Description== | ||
Line 20: | Line 20: | ||
==See Also== | ==See Also== | ||
*[[TypeKeys]] | *[[TypeKeys]] | ||
+ | *[[SendKeysWait]] | ||
*[[SendKeysVB]] | *[[SendKeysVB]] | ||
*[[KeyDown]] | *[[KeyDown]] | ||
*[[KeyUp]] | *[[KeyUp]] | ||
− | [[Category: | + | [[Category:Deprecated Functions]] |
− |
Latest revision as of 15:01, 10 November 2012
Definition
procedure SendKeys(const Str: AnsiString);
Availability
SCAR Divi 3.20 > 3.34
Description
Sends the string given in Str instantly to the active foreground window by emulating keystrokes on the keyboard.
Example
begin Wait(5000); SendKeys('Hello World!'); end.