GfK #2 Global LastClick% = 0 Global DoubleClickDelay% = 200 While Not KeyDown(1) If MouseDown(1) If MilliSecs() < LastClick + DoubleClickDelay Print "Double-click detected" EndIf While MouseDown(1) ;call your 'Update game' function etc here if you need to... Wend LastClick = MilliSecs() EndIf Wend