showMouse

Show the mouse pointer.
Old mouseShow syntax is still valid but discouraged.

Syntax:
showMouse

Example:
while not key(k_esc)
    printS("press 1 to hide mouse")
    waitKey(k_1)
    mouseHide
    printS("press 2 to hide mouse")
    waitKey(k_2)
    mouseShow
wend

See also hideMouse command.