dxMouseHit%(button%)

Parameters

button = button code (1=Left, 2=Right, 3-Middle)

Description

This command returns the number of times a specified mouse button has been hit since the last time you called the dxMouseHit() command. Also see dxKeyHit and JoyHit.

Example

; dxMouseHit Example

; Set up the timer
current=MilliSecs()
dxPrint "Press left mouse button a bunch of times for five seconds..."

; Wait 5 seconds
While MilliSecs() < current+5000
Wend

; dxPrint the results
dxPrint "Pressed left button " + dxMouseHit(1) + " times."

Index