Ok, here is a small little app to demo the issue in question...
If you move the Mouse very slowly, it plots each X and Y, however, if you move the mouse FASTER then you miss a lot of X and Y values. This makes it challenging to deal with Dragging things around on the screen as I miss several X and Y values.
Is there a way to increase the Sampling Rate for the Mouse or is this another issue? Maybe a problem with the code being tied to a VSYNC?
Is there a work around for this?
Graphics 1024,768 While Not KeyHit(KEY_ESCAPE) Plot MouseX(), MouseY() Flip() Wend
If you move the Mouse very slowly, it plots each X and Y, however, if you move the mouse FASTER then you miss a lot of X and Y values. This makes it challenging to deal with Dragging things around on the screen as I miss several X and Y values.
Is there a way to increase the Sampling Rate for the Mouse or is this another issue? Maybe a problem with the code being tied to a VSYNC?
Is there a work around for this?