summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorflorian <florian@b9310e46-f624-0410-8ea1-cfbb3a30dc96>2008-06-20 09:32:05 +0000
committerflorian <florian@b9310e46-f624-0410-8ea1-cfbb3a30dc96>2008-06-20 09:32:05 +0000
commit4ff21c3b7c01d97f066e3e7f23642959bc58d16c (patch)
tree94ec544efe89ebd87253ca61c0ea3375ecc93b3e
parentacb2b49d60e7766888dac1838745cbfaeba28a76 (diff)
git-svn-id: https://svn.neo-layout.org@543 b9310e46-f624-0410-8ea1-cfbb3a30dc96
-rw-r--r--windows/kbdneo2/ahk_für_kbdneo2_Test/1stREADME.txt19
-rw-r--r--windows/kbdneo2/ahk_für_kbdneo2_Test/AutoHotkey.ahk49
-rw-r--r--windows/kbdneo2/ahk_für_kbdneo2_Test/steuertasten_hack.exebin0 -> 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
new file mode 100644
index 0000000..c7c4228
--- /dev/null
+++ b/windows/kbdneo2/ahk_für_kbdneo2_Test/steuertasten_hack.exe
Binary files differ