Benutzer-Werkzeuge

Webseiten-Werkzeuge


knowledge_base:software_setup:autohotkey

Unterschiede

Hier werden die Unterschiede zwischen zwei Versionen der Seite angezeigt.

Link zu der Vergleichsansicht

Beide Seiten, vorherige ÜberarbeitungVorherige Überarbeitung
Nächste Überarbeitung
Vorherige Überarbeitung
knowledge_base:software_setup:autohotkey [2021/05/11 20:11] – [Writing special characters] - uploaded to Github julian.lemmerichknowledge_base:software_setup:autohotkey [2021/09/24 19:10] (aktuell) – Externe Bearbeitung 127.0.0.1
Zeile 21: Zeile 21:
 ==== Tasten in der Skriptsprache ==== ==== Tasten in der Skriptsprache ====
  
-| ''^'' | Strg | +| ''^ ''  | Strg    
-| ''!'' | Alt | +| ''!''   | Alt     
-| ''^!'' | AltGr | +| ''^ !'' | AltGr   
-| ''+'' | Shift |+| ''+''   | Shift   |
  
 +[[https://www.autohotkey.com/docs/KeyList.htm|Autohotkey Documentation Keylist]]
 +
 +:!: Auf doppelbelegung achten! [[https://www.ionos.de/digitalguide/websites/web-entwicklung/altgr-taste/#c230728|Beispiele für AltGr tasten, die schon vergeben sind]]
 ==== Skript aktualisieren ==== ==== Skript aktualisieren ====
  
Zeile 34: Zeile 37:
 ===== Skripts ===== ===== Skripts =====
  
-==== Writing special characters ====+==== VL Statistik Krissi ====
  
 Partly taken from https://autohotkey.com/board/topic/120691-special-charactersletters-unicode/ Partly taken from https://autohotkey.com/board/topic/120691-special-charactersletters-unicode/
Zeile 43: Zeile 46:
 SendMode Input  ; Recommended for new scripts due to its superior speed and reliability. SendMode Input  ; Recommended for new scripts due to its superior speed and reliability.
 SetWorkingDir %A_ScriptDir%  ; Ensures a consistent starting directory. SetWorkingDir %A_ScriptDir%  ; Ensures a consistent starting directory.
- 
  
 ^!+s::Send {U+03A3} ; Großes Sigma ^!+s::Send {U+03A3} ; Großes Sigma
Zeile 50: Zeile 52:
 ^!+d::Send {U+0394} ; Großes Delta ^!+d::Send {U+0394} ; Großes Delta
 ^!d::Send {U+03B4} ; Kleines 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
 </file> </file>
  
Zeile 58: Zeile 68:
 | AltGr + Shift + D   | Großes Delta: ''Δ''    | | AltGr + Shift + D   | Großes Delta: ''Δ''    |
 | AltGr + D           | Kleines 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/main/VLStatistik.ahk|JM-Lemmi/autohotkey-collection/VLStatistik.ahk]]
 +
 +===== 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.
  
-Find it on Github: [[https://github.com/JM-Lemmi/autohotkey-collection/blob/main/GriechischeBuchstaben.ahk|JM-Lemmi/autohotkey-collection/GriechischeBuchstaben.ahk]]+   https://www.autohotkey.com/docs/KeyList.htm#SpecialKeys 
 +   * https://www.autohotkey.com/docs/commands/KeyHistory.htm 
 +   * https://www.autohotkey.com/docs/commands/GetKey.htm#Examples
/app/www/public/data/attic/knowledge_base/software_setup/autohotkey.1620756661.txt.gz · Zuletzt geändert: 2021/09/24 19:10 (Externe Bearbeitung)