readonly static bool System.NumLock;
Gets whether Num Lock is active on the player's system.
You might want to use this to warn the player to switch it off before using
the numeric keypad arrow keys, for example.
Example:
if (System.NumLock)
{
Display("The NUM LOCK light is on.");
}
will display a message if Num Lock is on.
Compatibility: Supported by AGS 3.0.1 and later versions.
See Also: System.CapsLock,
System.ScrollLock
|