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