diff options
Diffstat (limited to 'windows/kbdneo2/ahk_für_kbdneo2_Test')
| -rw-r--r-- | windows/kbdneo2/ahk_für_kbdneo2_Test/1stREADME.txt | 19 | ||||
| -rw-r--r-- | windows/kbdneo2/ahk_für_kbdneo2_Test/AutoHotkey.ahk | 49 | ||||
| -rw-r--r-- | windows/kbdneo2/ahk_für_kbdneo2_Test/steuertasten_hack.exe | bin | 0 -> 203660 bytes | 
3 files changed, 68 insertions, 0 deletions
diff --git a/windows/kbdneo2/ahk_für_kbdneo2_Test/1stREADME.txt b/windows/kbdneo2/ahk_für_kbdneo2_Test/1stREADME.txt new file mode 100644 index 0000000..5ee849a --- /dev/null +++ b/windows/kbdneo2/ahk_für_kbdneo2_Test/1stREADME.txt @@ -0,0 +1,19 @@ +Dieses AHK-Skript soll den nativen Neo2.0-Treiber um die fehlenden Funktionen 
 +ergänzen und befindet sich noch in der Testphase.
 +
 +== Umgesetzte Funktionen ==
 +»Bild auf«
 +»Bild ab«
 +Cursor »Hoch«
 +Cursor »Links«
 +Cursor »Runter«
 +Cursor »Rechts«
 +»Ende«
 +»Entfernen«
 +»Einfügen«
 +»Pos1«
 +CapsLock über Shift+Shift
 +
 +== Noch fehlende Funktionen ==
 +Mod3- und Mod4-Lock
 +Compose
\ No newline at end of file diff --git a/windows/kbdneo2/ahk_für_kbdneo2_Test/AutoHotkey.ahk b/windows/kbdneo2/ahk_für_kbdneo2_Test/AutoHotkey.ahk new file mode 100644 index 0000000..362f642 --- /dev/null +++ b/windows/kbdneo2/ahk_für_kbdneo2_Test/AutoHotkey.ahk @@ -0,0 +1,49 @@ +;VKe2 ist VK_OEM_102
 +;»Bild auf«
 +~vke2 & 4::Sendinput {Blind}{PGUP}
 +;Cursor »Hoch«
 +~vke2 & l::Sendinput {Blind}{UP}
 +;»Entfernen«
 +~vke2 & c::Sendinput {Blind}{DEL}
 +;»Einfügen«
 +~vke2 & w::Sendinput {Blind}{INS}
 +;»Pos1«
 +~vke2 & u::Sendinput {Blind}{HOME}
 +;Cursor »Links«
 +~vke2 & i::Sendinput {Blind}{LEFT}
 +;Cursor »Runter«
 +~vke2 & a::Sendinput {Blind}{DOWN}
 +;Cursor »Rechts«
 +~vke2 & e::Sendinput {Blind}{RIGHT}
 +;»Ende«
 +~vke2 & o::Sendinput {Blind}{END}
 +;»Bild ab«
 +~vke2 & '::Sendinput {Blind}{PGUP}
 +;»Tab« damit Tab+Shift funzt
 +vke2 & *]::send {blind}{Tab}		
 +
 +;RShift wenn vorher LShift gedrückt wurde
 +LShift & ~RShift::	
 +      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
 +      }
 +return
 +
 +
 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 differnew file mode 100644 index 0000000..c7c4228 --- /dev/null +++ b/windows/kbdneo2/ahk_für_kbdneo2_Test/steuertasten_hack.exe  | 
