No če koga zanima.
Pogram : AutoHotkey
Skripta (daš v Moji Dokumenti/AutoHotkey.ahk ) :
ČŠŽ bodo na []\, če zraven držiš AltGr.
Pogram : AutoHotkey
Skripta (daš v Moji Dokumenti/AutoHotkey.ahk ) :
Koda:
; Homepage and authot info of this SendU() : http://fmate14.web.elte.hu/autohotkey/SendU/SendU.ahk
;====================================
;accents "top part" - this top part needs to be located at the top part (the 'run' part) of the ahk file
;====================================
;
;============ ----- Send Unicode Character - universal MS word-style accents in any application
;
SendInput:=DllCall("GetProcAddress",UInt,DllCall("GetModuleHandle",Str,"user32"),Str,"SendInput")
VarSetCapacity(SendUbuf, 56, 0) ; INIT SendU data strucure
NumPut(1, SendUbuf, 0, "Char")
NumPut(1, SendUbuf,28, "Char")
NumPut(0x40000, SendUbuf, 6)
NumPut(0x60000, SendUbuf,34)
;-----------------
;
;====================================
;accents "hotkey part" - (this part can be located anywhere)
;====================================
;
SendU(UC) { ; Send Unicode Char, Pressed modifier keys stay active!
Global ; SendUbuf, SendInput
NumPut(UC, SendUbuf, 6, "Short")
NumPut(UC, SendUbuf,34, "Short")
Return DllCall(SendInput, UInt,2, UInt,&SendUbuf, Int,28)
}
+>![::
Send {Blind}{RAlt Up}{Shift Up}
SendU(0x10C)
Send {Blind}{RAlt Down}{Shift Down}
return
>![::
Send {Blind}{Ctrl}{RAlt Up}
SendU(0x10D)
Send {Blind}{RAlt Down}
return
+>!]::
Send {Blind}{RAlt Up}{Shift Up}
SendU(0x160)
Send {Blind}{RAlt Down}{Shift Down}
return
>!]::
Send {Blind}{Ctrl}{RAlt Up}
SendU(0x161)
Send {Blind}{RAlt Down}
return
+>!\::
Send {Blind}{RAlt Up}{Shift Up}
SendU(0x17D)
Send {Blind}{RAlt Down}{Shift Down}
return
>!\::
Send {Blind}{Ctrl}{RAlt Up}
SendU(0x17E)
Send {Blind}{RAlt Down}
return
ČŠŽ bodo na []\, če zraven držiš AltGr.