(02-13-2024, 08:19 PM)bplus Wrote: Oh hey you aren't trying @NakedApe
Do I win?
PS I guess _Mousemovement does work.
LOL, clearly I need to work harder!
So if I use While _MouseInput: Wend and nothing inside that loop as you suggest, I get nada. See below. This displays two zeros wherever I put the mouse.
SCREEN _NEWIMAGE(1280, 720, 32)
DO
CLS
_LIMIT 30
WHILE _MOUSEINPUT: WEND
x = x + _MOUSEMOVEMENTX
x2 = _MOUSEMOVEMENTX
PRINT "x2:"; y
PRINT x;
_DISPLAY
LOOP UNTIL INKEY$ <> ""
SYSTEM
The other example above works tho...
OK, I'm glad we're on the same page here, b+! I'll chalk this up to a macOS thing. 5 spins will work for me - for now.
Thanks for the replies, DSMan and b+.