#include <Misc.au3>
#include <BlockInputEx.au3>
While 1
If _IsPressed(4) Then
_BlockInputEx(3) ;Блокируем клавиатуру
_BlockInputEx(2, "{MWUP}|{MWDOWN}") ;Блокируем мышь, кроме средней кнопки
Do
Sleep(10)
Until _IsPressed(4) = 0
_BlockInputEx(0) ;Разблокируем все
EndIf
WEnd