|
Hello NG,
I use the swab of the fn-Button in BIOS. But sometimes others use my notebook and it is a solution not as good as I hoped. I'd like only to change Fn+a, FN+x, Fn+c, Fn+v to CTRL+a... I use the x201 Thinkpad and tried all Solutions above, but it didn't work. The best was:
*SC163::
Send, {LWin down}
Loop
{
Sleep, 10
GetKeyState, state, vkA6sc16A, P
if state = U ; The key has been released, so break out of the loop.
break
}
Send, {LWin up}
return
but it didn't allow combinations. It opened the windows baseline immediately. Then I changed in
*SC163::
Send, {LCtrl down}
Loop
{
Sleep, 10
GetKeyState, state, vkA6sc16A, P
if state = U ; The key has been released, so break out of the loop.
break
}
Send, {LCtrl up}
return
and it didn't function at all.
What could I do?
Yours Dirk.
|