Dies ist eine alte Version des Dokuments!
Es empfielt sich, die Unicode 64bit Version zu installieren.
Eine neue Datei mit dem .ahk
erstellen.
Skriptinhalt schreiben.
Doppelklick auf Script um es zu laden.
auf http://www.autohotkey.org/ oben Rechts unter „Documentation“ kann mehr gelesen werden.
^ | Strg |
! | Alt |
^ ! | AltGr |
+ | Shift |
Autohotkey Documentation Keylist
Auf doppelbelegung achten! Beispiele für AltGr tasten, die schon vergeben sind
Partly taken from https://autohotkey.com/board/topic/120691-special-charactersletters-unicode/
#NoEnv ; Recommended for performance and compatibility with future AutoHotkey releases. ; #Warn ; Enable warnings to assist with detecting common errors. SendMode Input ; Recommended for new scripts due to its superior speed and reliability. SetWorkingDir %A_ScriptDir% ; Ensures a consistent starting directory. ^!+s::Send {U+03A3} ; Großes Sigma ^!s::Send {U+03C3} ; Kleines Sigma ^!a::Send {U+03B1} ; Kleines Alpha ^!+d::Send {U+0394} ; Großes Delta ^!d::Send {U+03B4} ; Kleines Delta
Tasten | Buchstabe |
---|---|
AltGr + Shift + S | Großes Sigma: Σ |
AltGr + S | Kleines Sigma: σ |
AltGr + A | Kleines Alpha: α |
AltGr + Shift + D | Großes Delta: Δ |
AltGr + D | Kleines Delta: δ |
Find it on Github: JM-Lemmi/autohotkey-collection/GriechischeBuchstaben.ahk