Difference between revisions of "PressKeyEx"
From SCAR Divi Manual
(Created page with "==Definition== <source lang="scar" lines="false"> procedure PressKeyEx(const Key: Char; const Interval: Integer); </source> ==Availability== SCAR Divi 3.35 > Current ==Descr...") |
(No difference)
|
Latest revision as of 15:42, 10 November 2012
Definition
procedure PressKeyEx(const Key: Char; const Interval: Integer);
Availability
SCAR Divi 3.35 > Current
Description
Sends a character defined by Key as a keypress. The key will only be sent once every time to function is called. Interval specifies the time between holding and releasing the key in ms.
Example
begin PressKeyEx('a', 250); end.