Hi, i'm sometimes using the scaled window options, in the graphics command, mode 3 i think it is. When i set mouse co-ords using movemouse, it doesn't move the mouse to the co-ords i specify. There always slightly off. Anyway around this?
Scale the window, then hold down the left mouse button and you'll see the mouse co-ords are slightly off sometimes.
Scale the window, then hold down the left mouse button and you'll see the mouse co-ords are slightly off sometimes.
Graphics 800,600,16,3 SetBuffer BackBuffer() While Not KeyHit(1) Cls If MouseDown(1) Then MoveMouse 500,300 End If Text 0,0," mouseX = "+MouseX() Text 0,10," mouseY = "+MouseY() Flip Wend