'
' SwapMouseButton - reverses or restores the meaning of the left and right mouse buttons.
'
' Author: Joe Strazzere
'
Function SwapMouseButton(int)
External("user32","SwapMouseButton", int)
EndFunction
'
' To swap the buttons, call it this way:
'
SwapMouseButton(1)
msgbox("The buttons have been reversed. Try it here!")
'
' To restore the buttons, call it this way:
'
SwapMouseButton(0)
msgbox("The buttons have been restored. Try it here!")