Hello,
I am writing a program for a visually impaired child.
I would like to magnify the mouse arrow, programmatically.
We can do it with Windows but I would like to do it by code in my program.
Thank you for your help.
Change mouse size
Re: Change mouse size
It can be done for the Desktop or for your Application
But for the Desktop I don't recommend
But for the Desktop I don't recommend
Egypt my love
Re: Change mouse size
If you are using a Canvas gadget then the #PB_Cursor_Invisible flag can be used to hide the system pointer when it is over the gadget.
Then you could draw a sprite at the mouse co-ordinates.
(See the CanvasGadget example program, although this does use a different system cursor, but the basic principle is there.)
Alternatively, you could just use a sprite at the mouse co-ordinates, although it may not be too pretty if there is a lot of lag caused by processing in-between checks.
Then you could draw a sprite at the mouse co-ordinates.
(See the CanvasGadget example program, although this does use a different system cursor, but the basic principle is there.)
Alternatively, you could just use a sprite at the mouse co-ordinates, although it may not be too pretty if there is a lot of lag caused by processing in-between checks.
Re: Change mouse size
Thank you