06-01-2025, 12:08 PM
What @RhoSigma said - you basically want to put the mouse clearing code inside your main loop right before you read the mouse input, like this:
Code: (Select All)
DO 'main program loop
DO WHILE _MOUSEINPUT: LOOP
'Access mouse data
PRINT _MOUSEX; _MOUSEY
'Do other stuff
_LIMIT 30
LOOP