Difference between revisions of "TypeText"
From SCAR Divi Manual
(Created page with "==Definition== <source lang="scar" lines="false"> procedure TypeText(const Str: string); </source> ==Availability== SCAR Divi 3.35 > Current ==Description== Sends the text s...") |
(No difference)
|
Latest revision as of 17:39, 9 November 2012
Definition
procedure TypeText(const Str: string);
Availability
SCAR Divi 3.35 > Current
Description
Sends the text specified in Str as key presses to the active client. The keys are sent with intervals to give the impression of human input. An extended version of this function is available as TypeTextEx.
Example
begin TypeText('Hello World!'); end.