Skip to content

keyboard_set_numlock

drewmccluskey edited this page Feb 12, 2019 · 2 revisions

keyboard_set_numlock

Sets the numlock on or off

Syntax:

keyboard_set_numlock(set)
Argument Description
bool set The bool for numlock

Returns: bool

Description:

This function allows the user to turn on or off the numlock. Inputting false will set the numlock off, inputting true will turn numlock on.

Example:

keyboard_set_numlock(false);

This code will turn off numlock.

Back to Keyboard

Clone this wiki locally