Hmm, If I use Hidemouse so I can draw my own mouse cursor, when I'm in windowed mode and move the cursor to the title bar the windows pointer DOES NOT reappear until you move *above* the title bar. Therefore the user can't click on the minimise and close buttons, this is crazy. It worked in Blitz Plus, see code samples below:
Max:
Plus:
I guess I'm going to have to read the mouse position and manually enable the mouse pointer when it's above the graphics window then disable it when it's back in the main window. This is pretty lame.
Anyone know if I'm doing anything wrong or should I post this in the bugs forum?
Max:
Graphics 800,600,0 HideMouse While Not KeyDown(KEY_ESCAPE) Cls DrawOval MouseX(),MouseY(),2,2 Flip Wend
Plus:
Graphics 800,600,0 HidePointer While Not KeyDown(1) Cls Oval MouseX(),MouseY(),2,2 Flip Wend
I guess I'm going to have to read the mouse position and manually enable the mouse pointer when it's above the graphics window then disable it when it's back in the main window. This is pretty lame.
Anyone know if I'm doing anything wrong or should I post this in the bugs forum?