Difference between revisions of "IsFKeyDown"
From SCAR Divi Manual
| (One intermediate revision by the same user not shown) | |||
| Line 15: | Line 15: | ||
==Availability== | ==Availability== | ||
| − | SCAR Divi 3.00 > | + | SCAR Divi 3.00 > 3.34 |
==Description== | ==Description== | ||
| Line 34: | Line 34: | ||
*[[IsArrowDown]] | *[[IsArrowDown]] | ||
*[[IsNumpadKeyDown]] | *[[IsNumpadKeyDown]] | ||
| + | *[[IsKeyDown]] | ||
| − | [[Category: | + | [[Category:Deprecated Functions]] |
| − | |||
Latest revision as of 15:10, 10 November 2012
Definition
function IsFKeyDown(Num: Byte): Boolean;
Source Code
function IsFKeyDown(Num: Byte): Boolean;
begin
Result := False;
if (Num > 0) and (Num < 13) then
Result := GetAsyncKeyState(111 + Num) <> 0;
end;Availability
SCAR Divi 3.00 > 3.34
Description
Returns true if an F-key specified by Num is being pressed.
Example
begin
repeat
Wait(500)
until IsFKeyDown(8);
WriteLn('Pressed F8');
end.