mouse cursor

Previous topic - Next topic

Guest

Hello,

      The mouse works fine, except I can't see the cursor.  How can I display the cursor?

Kitty Hello

Either draw a sprite or print somethins to the mouse location:

Code (glbasic) Select
LOADSPRITE "MyPointer.bmp", 12
start:
MOUSESTATE mx, my, b1, b2
SPRITE 12, mx, my
SHOWSCREEN
GOTO start

or:

Code (glbasic) Select
start:
MOUSESTATE mx, my, b1, b2
PRINT "X", mx, my
SHOWSCREEN
GOTO start

Have fun,
Gernot