readonly static bool System.ScrollLock;
Gets whether Scroll Lock is active on the player's system.
Note that when running your game under the debugger, the Scroll Lock key will break
out of the game into the debugger, so it is not advised that you use it for any
other purpose in your game.
Example:
if (System.ScrollLock)
{
Display("The SCROLL LOCK light is on.");
}
will display a message if Scroll Lock is on.
Compatibility: Supported by AGS 3.0.1 and later versions.
See Also: System.CapsLock,
System.NumLock
|