GetCurrentKeyState
From SCAR Divi Manual
Definition
function GetCurrentKeyState(const VKey: Byte): Boolean;
Availability
SCAR Divi 3.35 > Current
Description
Gets the state of a key instantly from the active client. This means that it will return true if the key is currently being pressed.
Example
begin
repeat
Wait(500)
until GetCurrentKeyState(VK_DOWN);
WriteLn('Pressed down');
end.