WaitMouse
WaitMouse MoveFlag, ButtonFlag
 
Parameters:

    MoveFlag = Flag to wait for mouse movements (0= ingore, 1 = true)
    ButtonFlag = Flag to wait for mouse button press
Returns: NONE
 

      WaitMouse will wait for until the user either moves the mouse or presses a selected mouse button.


[ Button Flag ]

      0= Don't wait for mouse button
      1= Wait for the LEFT Mouse button to be pressed
      2= Wait for the RIGHT Mouse button to be pressed
      3= Wait for either the LEFT or RIGHT buttons to be pressed
      4= Wait for the MIDDLE/WHEEL button to be pressed
      5= Wait for either the LEFT or MIDDLE/WHEEL buttons to be pressed
      6= Wait for either the RIGHT & MIDDLE/WHEEL buttons to be pressed
      7= Wait for ANY mouse buttons to be pressed.





FACTS:


      * None



Mini Tutorial:




  
  
; Show a message and WAIT for the MOUSE to be MOVED
  Print "Move the Mouse to Continue"
  Sync
  WaitMouse 1,0
  
  
; Show a message and WAIT for the LEFT MOUSE button
  Print "Press Mouse LEFT Button (1) to Continue"
  Sync
  WaitMouse 0,1
  
; Show a message and WAIT for the RIGHT MOUSE button
  Print "Press Mouse RIGHT Button (2) to Continue"
  Sync
  WaitMouse 0,2
  
; Show a message and WAIT for the MIDDLE MOUSE button
  Print "Press Mouse MIDDLE Button (4) to Continue"
  Sync
  WaitMouse 0,4
  
  
; Show a message and WAIT for EITHER a mouse move or
; button to be pressed
  Print "Move the Mouse or press any mouse button Continue"
  Sync
  WaitMouse 1,%111
  
  
; Display the Screen and wait for the user to press a key
  Print " Done complete - press key to end"
  Sync
  WaitKey
  



This example would output.

  
  Move the Mouse To Continue"
  Press Mouse LEFT Button (1To Continue
  Press Mouse RIGHT Button (2To Continue
  Press Mouse MIDDLE Button (4To Continue
  Move the Mouse Or press any Mouse button Continue
  Done complete - press key To End
  


 
Related Info: Wait | WaitALLinput | Waitkey | WaitNOinput | WaitNoKey :
 


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