#KeyHistory

Sets the maximum number of keyboard and mouse events displayed by the KeyHistory window. You can set it to 0 to disable key history.

#KeyHistory MaxEvents

Parameters

MaxEvents

The maximum number of keyboard and mouse events displayed by the KeyHistory window (limit 500). Specify 0 to disable key history entirely.

Remarks

If this directive is unspecified in the script, it will behave as though set to 40.

Because this setting is put into effect before the script begins running, it is only necessary to specify it once (anywhere in the script).

Because each keystroke or mouse click consists of a down-event and an up-event, KeyHistory displays only half as many "complete events" as specified here. For example, if the script contains #KeyHistory 50, up to 25 keystrokes and mouse clicks will be displayed.

Like other directives, #KeyHistory cannot be executed conditionally.

KeyHistory, #NoTrayIcon

Examples

Causes KeyHistory to display the last 100 instead 40 keyboard and mouse events.

#KeyHistory 100

Disables key history entirely.

#KeyHistory 0