Name
IsRightMouse -- check if the right mouse button is pressed (V1.5)
Synopsis
pressed = IsRightMouse()
Function
This function returns True if the right mouse button is currently pressed, otherwise False.

Inputs
none

Example
Repeat
  Wait(2)
Until IsRightMouse() = True
The above code waits until the right mouse button is pressed. (you can have that easier by using WaitRightMouse(); the one above is only useful if you want to do something while the mouse button is not pressed)

Show TOC