PressKeyEx

From SCAR Divi Manual
Revision as of 16:42, 10 November 2012 by Freddy (talk | contribs) (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...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to: navigation, search

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.

See Also