QB64.org Forum
Active Forums => QB64 Discussion => Topic started by: NOVARSEG on January 10, 2021, 12:23:00 am
-
It would be nice if mouse x, y was returned at the start of mouse movement - not after the mouse stops moving.
some example code which clears the mouse buffer but wastes time in doing so.
****
DO WHILE _MOUSEINPUT: LOOP ' Clear mouse buffer.
DO
x0 = _MOUSEX
y0 = _MOUSEY
loop
-
Are you looking for something like this, with the drag feature? https://www.qb64.org/forum/index.php?topic=3380.0
-
To echo what Steve said, are you needing any help with using the existing mouse statements?
Example of button and drag. Code allows a click to be registered (high pitch sound) and not performed again until the button is released (lower pitched sound). When the button is held down and the mouse is moved (drag), it will draw asterisk characters across the screen until the movement is stopped or the button is released.
lbuttondown% = -1
lbuttondown% = 0
Pete