KeyUp
From SCAR Divi Manual
Definition
procedure KeyUp(const Key: Char);
Availability
SCAR Divi 3.35 > Current
Description
Releases a key defined by the character Key. The key will only be sent once every time to function is called. To hold the key, call KeyDown.
Example
begin KeyDown('a'); Wait(50); KeyUp('a'); end.