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

Inputs
none

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

Show TOC