Du kan vel bare fjerne if delene i "BlockKeyboard_HookProc(nCode, wParam, lParam)"-metoden så du skal trykke u,n.
BlockKeyboard_HookProc(nCode, wParam, lParam)
{
static count = 0
; Unlock keyboard if "unlock" typed in
if (NumGet(lParam+8) & 0x80) { ; key up
if (count = 0 && NumGet(lParam+4) = 0x16) { ; 'u'
count = 1
} else if (count = 1 && NumGet(lParam+4) = 0x31) { ; 'n'
count = 0
BlockKeyboard(false)
} else {
count = 0
}
}
return 1
}
Ved ikke om det virker, men du kan prøve