port = joystick port to check |
This command makes your program halt until a jpystick button is pressed on the joystick. Used alone, it simply halts and waits for a button press. It can also be used to assign the pressed button's code value to a variable. See example.
In MOST CASES, you are not going to want to use this command because chances are likely you are going to want things on the screen still happening while awaiting the button press. In that situation, you'll use a WHILE ... WEND awaiting a JoyHit value - refreshing your screen each loop. As with any joystick command, you MUST have a DirectX compatible joystick plugged in and properly configured within Windows for it to work. See your joystick documentation for more information. |
; WaitJoy() sample
Print "Press a joystick button to continue." button=WaitJoy() Print "The joystick button code of the button you pressed was: " + button Print "Now press a button to quit." WaitJoy() End |