icfu wrote:I have that µ on my keyboard, too, but I can't create it pressing Ctrl-Alt-M, German keyboard layout, too.
I get this 'µ'
Well, what happens when you press Ctrl-Alt-M now after you changed the hotkey, is the µ painted or is still something strange happening?
It happens nothing strange. Only my 'µ'. Or not within a textfield - nothing.
Are you running some other application that has hijacked the Ctrl-Alt-M shortcut? It sounds a little bit strange that some other task is activated when pressing the hotkey, maybe you are running TaskSwitchXP and you have set that hotkey there?
No, no other App that catches the hotkey (as far as I can check it). But I have seen another strabge behavior: If I use the Alt Ctrl M sometimes I open the Dialog with Language highlited and then switching to 'Edit view' before closing it. Dont know what happens.
But anyway I used to use F11/F12 (english/german) and when I use them it works fine. I did advance the script with "IfWinActive " so the hotkey only work for TC and not for other Apps. And I put both parts english german into one script - and now I'm happy.
Code: Select all
~F12::
IfWinActive ahk_class TTOTAL_CMD
{
PostMessage, 1075, 499, , , ahk_class TTOTAL_CMD
Send, {TAB}
SendRaw, Stefan deutsch
Send, {ENTER}
}
Return
~F11::
IfWinActive ahk_class TTOTAL_CMD
{
PostMessage, 1075, 499, , , ahk_class TTOTAL_CMD
Send, {TAB}
SendRaw, Stefan englisch
Send, {ENTER}
}
return
Thank you for your help. Maybe I find out something new tomorrow but now I go to bed.
Good night.
sheepdog