Mouse
Mouse Flag
 
Parameters:

    Flag = 1(true) mouse pointer on, 0 (false) mouse pointer off
Returns: NONE
 

      Mouse lets you enable/disable the windows mouse pointer. This will only affect programs running with a windowed screen mode.



FACTS:


      * The mouse will only be invisible (the windows mouse pointer) while your program is running in a windowed screen mode. If you turn the mouse OFF, then it'll vanish. But only while it's over your programs window.





Mini Tutorial:



  
  
; turn the mouse pointer off
  Mouse off
  
  
  Do
     Cls RGB(0,0,0)
     
   ; draw circle as the mouse pointer
     Circle MouseX(),MouseY(),5,1
     
   ; Display the Screen and wait for the user to press a key
     Sync
  Loop
  
  




 
Related Info: MouseButton | MouseX | MouseY | MouseZ | SetMouse | SetMouseX | SetMouseY :
 


(c) Copyright 2002 - 2024 - Kevin Picone - PlayBASIC.com