Difference between revisions of "IsArrowDown"
From SCAR Divi Manual
(→Keys (Num)) |
|||
| (4 intermediate revisions by the same user not shown) | |||
| Line 1: | Line 1: | ||
==Definition== | ==Definition== | ||
<source lang="scar" lines="false"> | <source lang="scar" lines="false"> | ||
| − | function IsArrowDown(Num: Byte): Boolean; | + | function IsArrowDown(const Num: Byte): Boolean; |
</source> | </source> | ||
| Line 19: | Line 19: | ||
==Availability== | ==Availability== | ||
| − | SCAR Divi 3.00 > | + | SCAR Divi 3.00 > 3.34 |
==Description== | ==Description== | ||
| − | Returns [[true]] if an arrow specified by '''Num''' was pressed. | + | Returns [[true]] if an arrow key specified by '''Num''' was pressed. |
===Keys=== | ===Keys=== | ||
| Line 44: | Line 44: | ||
*[[IsFKeyDown]] | *[[IsFKeyDown]] | ||
*[[IsNumpadKeyDown]] | *[[IsNumpadKeyDown]] | ||
| + | *[[IsKeyDown]] | ||
| − | [[Category: | + | [[Category:Deprecated Functions]] |
| − | |||
Latest revision as of 15:08, 10 November 2012
Definition
function IsArrowDown(const Num: Byte): Boolean;
Source Code
function IsArrowDown(Num: Byte): Boolean;
begin
Result := False;
case Num of
0: Result := GetAsyncKeyState(VK_UP) <> 0;
1: Result := GetAsyncKeyState(VK_RIGHT) <> 0;
2: Result := GetAsyncKeyState(VK_DOWN) <> 0;
3: Result := GetAsyncKeyState(VK_LEFT) <> 0;
end;
end;Availability
SCAR Divi 3.00 > 3.34
Description
Returns true if an arrow key specified by Num was pressed.
Keys
- 0: Up
- 1: Right
- 2: Down
- 3: Left
Example
begin
repeat
Wait(500)
until IsArrowDown(2);
WriteLn('Pressed down');
end.