Hier werden die Unterschiede zwischen zwei Versionen der Seite angezeigt.
Nächste Überarbeitung | Vorherige Überarbeitung | ||
knowledge_base:software_setup:autohotkey [2021/05/11 19:28] – angelegt && added Writing special characters julian.lemmerich | knowledge_base:software_setup:autohotkey [2021/09/24 19:10] (aktuell) – Externe Bearbeitung 127.0.0.1 | ||
---|---|---|---|
Zeile 1: | Zeile 1: | ||
====== Autohotkey ====== | ====== Autohotkey ====== | ||
+ | |||
+ | ===== Installation ===== | ||
+ | |||
+ | https:// | ||
+ | |||
+ | Es empfielt sich, die Unicode 64bit Version zu installieren. | ||
+ | |||
+ | ===== Verwendung ===== | ||
+ | |||
+ | Eine neue Datei mit dem '' | ||
+ | |||
+ | Skriptinhalt schreiben. | ||
+ | |||
+ | Doppelklick auf Script um es zu laden. | ||
+ | |||
+ | ==== Mehr Informationen über die Skriptsprache ==== | ||
+ | |||
+ | auf http:// | ||
+ | |||
+ | ==== Tasten in der Skriptsprache ==== | ||
+ | |||
+ | | '' | ||
+ | | '' | ||
+ | | '' | ||
+ | | '' | ||
+ | |||
+ | [[https:// | ||
+ | |||
+ | :!: Auf doppelbelegung achten! [[https:// | ||
+ | ==== Skript aktualisieren ==== | ||
+ | |||
+ | Nachdem das Skript aktualisiert wurde, neuladen nicht vergessen! | ||
+ | |||
+ | {{: | ||
===== Skripts ===== | ===== Skripts ===== | ||
- | ==== Writing special characters | + | ==== VL Statistik Krissi |
- | < | + | Partly taken from https:// |
- | !c::Send {U+00E7} | + | |
+ | < | ||
+ | # | ||
+ | ; #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% | ||
+ | |||
+ | ^!+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 | ||
+ | !e::Send {U+03B5} ; Kleines Epsilon | ||
+ | ^!b::Send {U+03B2} ; Kleines Beta | ||
+ | ^!p::Send {U+03C0} ; Kleines Pi | ||
+ | ^!h::Send {U+03B7} ; Kleines Eta | ||
+ | ^!,::Send {U+2265} ; groesser oder gleich | ||
+ | ^!.::Send {U+2264} ; kleiner oder gleich | ||
+ | !0::Send {U+2260} ; ungleich | ||
+ | ^!-::Send {U+2248} ; fast gleich | ||
</ | </ | ||
- | https://autohotkey.com/board/topic/120691-special-charactersletters-unicode/ | + | ^ Tasten |
+ | | AltGr + Shift + S | Großes Sigma: '' | ||
+ | | AltGr + S | Kleines Sigma: '' | ||
+ | | AltGr + A | Kleines Alpha: '' | ||
+ | | AltGr + Shift + D | Großes Delta: '' | ||
+ | | AltGr + D | Kleines Delta: '' | ||
+ | | Alt + E | Kleines Epsilon: '' | ||
+ | | AltGr + B | Kleines Beta: '' | ||
+ | | AltGr + P | Kleines Pi: '' | ||
+ | | AltGr + H | Kleines Eta: '' | ||
+ | | AltGr + , | groesser gleich: '' | ||
+ | | AltGr + . | kleiner gleich: '' | ||
+ | | Alt + 0 | ungleich: '' | ||
+ | | AltGr + - | fast gleich: '' | ||
+ | |||
+ | Find it on Github: [[https://github.com/JM-Lemmi/autohotkey-collection/blob/ | ||
+ | |||
+ | ===== Additional Information ===== | ||
+ | |||
+ | ==== Direct Key Reference ==== | ||
+ | |||
+ | You can also use direct key references instead of the Displayed Character, but I havent quite figured it out yet. | ||
+ | |||
+ | * https:// | ||
+ | * https:// | ||
+ | * https:// |