TypeTextEx
From SCAR Divi Manual
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.