diff options
Diffstat (limited to 'windows/kbdneo2')
-rw-r--r-- | windows/kbdneo2/ahk_für_kbdneo2_Test/AutoHotkey.ahk | 253 | ||||
-rw-r--r-- | windows/kbdneo2/ahk_für_kbdneo2_Test/steuertasten_hack.exe | bin | 203660 -> 204032 bytes |
2 files changed, 224 insertions, 29 deletions
diff --git a/windows/kbdneo2/ahk_für_kbdneo2_Test/AutoHotkey.ahk b/windows/kbdneo2/ahk_für_kbdneo2_Test/AutoHotkey.ahk index 362f642..37f97a5 100644 --- a/windows/kbdneo2/ahk_für_kbdneo2_Test/AutoHotkey.ahk +++ b/windows/kbdneo2/ahk_für_kbdneo2_Test/AutoHotkey.ahk @@ -1,49 +1,244 @@ -;VKe2 ist VK_OEM_102
+;== Fehlende Steuerbefehle hinzu ==
+
+;SC138 ist VK_OEM_102 (rechts) ist Mod4
;�Bild auf�
-~vke2 & 4::Sendinput {Blind}{PGUP}
+~SC138 & 4::Sendinput {Blind}{PGUP}
+;Cursor �Hoch�
+~SC138 & l::Sendinput {Blind}{UP}
+;�Entfernen�
+~SC138 & c::Sendinput {Blind}{DEL}
+;�Einf�gen�
+~SC138 & w::Sendinput {Blind}{INS}
+;�Pos1�
+~SC138 & u::Sendinput {Blind}{HOME}
+;Cursor �Links�
+~SC138 & i::Sendinput {Blind}{LEFT}
+;Cursor �Runter�
+~SC138 & a::Sendinput {Blind}{DOWN}
+;Cursor �Rechts�
+~SC138 & e::Sendinput {Blind}{RIGHT}
+;�Ende�
+~SC138 & o::Sendinput {Blind}{END}
+;�Bild ab�
+~SC138 & '::Sendinput {Blind}{PGDN}
+
+;SC056 ist VK_OEM_102 (links) ist Mod4
+;�Bild auf�
+~SC056 & 4::Sendinput {Blind}{PGUP}
;Cursor �Hoch�
-~vke2 & l::Sendinput {Blind}{UP}
+~SC056 & l::Sendinput {Blind}{UP}
;�Entfernen�
-~vke2 & c::Sendinput {Blind}{DEL}
+~SC056 & c::Sendinput {Blind}{DEL}
;�Einf�gen�
-~vke2 & w::Sendinput {Blind}{INS}
+~SC056 & w::Sendinput {Blind}{INS}
;�Pos1�
-~vke2 & u::Sendinput {Blind}{HOME}
+~SC056 & u::Sendinput {Blind}{HOME}
;Cursor �Links�
-~vke2 & i::Sendinput {Blind}{LEFT}
+~SC056 & i::Sendinput {Blind}{LEFT}
;Cursor �Runter�
-~vke2 & a::Sendinput {Blind}{DOWN}
+~SC056 & a::Sendinput {Blind}{DOWN}
;Cursor �Rechts�
-~vke2 & e::Sendinput {Blind}{RIGHT}
+~SC056 & e::Sendinput {Blind}{RIGHT}
;�Ende�
-~vke2 & o::Sendinput {Blind}{END}
+~SC056 & o::Sendinput {Blind}{END}
;�Bild ab�
-~vke2 & '::Sendinput {Blind}{PGUP}
-;�Tab� damit Tab+Shift funzt
-vke2 & *]::send {blind}{Tab}
+~SC056 & '::Sendinput {Blind}{PGDN}
+;== Mod-Locks hinzu ==
+
+;= CapsLock mit Shift+Shift =
;RShift wenn vorher LShift gedr�ckt wurde
LShift & ~RShift::
- if GetKeyState("CapsLock","T")
- {
- setcapslockstate, off
- }
- else
- {
- setcapslockstate, on
- }
+ if GetKeyState("CapsLock","T")
+ {
+ setcapslockstate, off
+ }
+ else
+ {
+ setcapslockstate, on
+ }
return
;LShift wenn vorher RShift gedr�ckt wurde
RShift & ~LShift::
- if GetKeyState("CapsLock","T")
- {
- setcapslockstate, off
- }
- else
- {
- setcapslockstate, on
- }
+ if GetKeyState("CapsLock","T")
+ {
+ setcapslockstate, off
+ }
+ else
+ {
+ setcapslockstate, on
+ }
+return
+
+56()[{
+IsMod4Locked := 0
+Mod4LockAktion :=0
+~SC056 & SC138::
+ if (IsMod4Locked)
+ {
+ IsMod4Locked = 0
+ Mod4LockAktion = 0
+; MsgBox Mod4-Feststellung aufgebehoben
+ sendinput {vke2 up}
+ }
+ else
+ {
+ IsMod4Locked = 1
+ Mod4LockAktion = 1
+ MsgBox Mod4 festgestellt: Um Mod4 wieder zu l�sen dr�cke beide Mod4 Tasten gleichzeitig
+ goto SendMod4
+ }
return
+~SC138 & SC056::
+ if (IsMod4Locked)
+ {
+ IsMod4Locked = 0
+ Mod4LockAktion = 0
+; MsgBox Mod4-Feststellung aufgebehoben
+ sendinput {vke2 up}
+ }
+ else
+ {
+ IsMod4Locked = 1
+ Mod4LockAktion = 1
+ MsgBox Mod4 festgestellt: Um Mod4 wieder zu l�sen dr�cke beide Mod4 Tasten gleichzeitig
+ goto SendMod4
+ }
+return
+
+SendMod4:
+ if(IsMod4Locked AND Mod4LockAktion)
+ sendinput {vke2 down}
+ else
+ sendinput {vke2 up}
+return
+
+
+~Shift::
+ if (IsMod4Locked)
+ {
+ Mod4LockAktion = 0
+ goto SendMod4
+ }
+ else
+return
+
+~SHIFT UP::
+ if (IsMod4Locked)
+ {
+ Mod4LockAktion = 1
+ goto SendMod4
+ }
+ else
+return
+
+
+~vk15::
+ if (IsMod4Locked)
+ {
+ Mod4LockAktion = 0
+ goto SendMod4
+ }
+ else
+return
+
+~vk15 UP::
+ if (IsMod4Locked)
+ {
+ Mod4LockAktion = 1
+ goto SendMod4
+ }
+ else
+return
+
+
+~SC138::
+ if (IsMod4Locked)
+ {
+ Mod4LockAktion = 0
+ goto SendMod4
+ }
+ else
+return
+
+~SC138 UP::
+ if (IsMod4Locked)
+ {
+ Mod4LockAktion = 1
+ goto SendMod4
+ }
+ else
+return
+
+~SC056::
+ if (IsMod4Locked)
+ {
+ Mod4LockAktion = 0
+ goto SendMod4
+ }
+ else
+return
+
+
+
+~SC056 UP::
+ if (IsMod4Locked)
+ {
+ Mod4LockAktion = 1
+ goto SendMod4
+ }
+ else
+return
+
+
+~4::
+if (Mod4LockAktion)
+Sendinput {Blind}{PGUP}
+return
+
+~l::
+if (Mod4LockAktion)
+Sendinput {Blind}{UP}
+return
+
+~c::
+if (Mod4LockAktion)
+Sendinput {Blind}{DEL}
+return
+
+~w::
+if (Mod4LockAktion)
+Sendinput {Blind}{INS}
+return
+
+~u::
+if (Mod4LockAktion)
+Sendinput {Blind}{HOME}
+return
+
+~i::
+if (Mod4LockAktion)
+Sendinput {Blind}{LEFT}
+return
+
+~a::
+if (Mod4LockAktion)
+Sendinput {Blind}{DOWN}
+return
+
+~e::
+if (Mod4LockAktion)
+Sendinput {Blind}{RIGHT}
+return
+
+~o::
+if (Mod4LockAktion)
+Sendinput {Blind}{END}
+return
+~'::
+if (Mod4LockAktion)
+Sendinput {Blind}{PGDN}
+return
\ No newline at end of file diff --git a/windows/kbdneo2/ahk_für_kbdneo2_Test/steuertasten_hack.exe b/windows/kbdneo2/ahk_für_kbdneo2_Test/steuertasten_hack.exe Binary files differindex c7c4228..7504e12 100644 --- a/windows/kbdneo2/ahk_für_kbdneo2_Test/steuertasten_hack.exe +++ b/windows/kbdneo2/ahk_für_kbdneo2_Test/steuertasten_hack.exe |