Difference between revisions of "TypeTextEx"
From SCAR Divi Manual
(Created page with "==Definition== <source lang="scar" lines="false"> procedure TypeTextEx(const Str: string; const UseNumpad, UseDelays: Boolean); </source> ==Availability== SCAR Divi 3.35 > Cu...") |
(No difference)
|
Latest revision as of 15:03, 10 November 2012
Definition
procedure TypeTextEx(const Str: string; const UseNumpad, UseDelays: Boolean);
Availability
SCAR Divi 3.35 > Current
Description
Sends the text specified in Str as key presses to the active client. When UseNumpad is true, the numpad keys will be emulated for number input. When UseDelays is true, the keys will be sent with intervals to give the impression of human input.
Example
begin TypeTextEx('Hello World!', True, False); end.