PC Logo Wiki
Advertisement

Syntax

SETMOUSESHAPE number

(SETMOUSESHAPE)

Explanation

SETMOUSESHAPE changes the shape of the mouse cursor when it is within the Graphics window. Its input is a number representing one of 23 available mouse shapes. When Logo starts, the mouse shape is 1. If SETMOUSESHAPE enclosed in parentheses without inputs, shape 1 is used.

Use MOUSESHAPE to output the number of the current mouse shape.

Example

? SETMOUSESHAPE 3

? MOUSESHAPE

Result: 3

?

Advertisement