diff options
author | dennis <dennis@b9310e46-f624-0410-8ea1-cfbb3a30dc96> | 2008-07-08 02:16:23 +0000 |
---|---|---|
committer | dennis <dennis@b9310e46-f624-0410-8ea1-cfbb3a30dc96> | 2008-07-08 02:16:23 +0000 |
commit | 5e22111a71a1b88176569d81e05607fa14d8055c (patch) | |
tree | 7412dbd8b0607082348f4ec7d3aece33a09a4518 /windows/autohotkey/Source/Methods-Other.ahk | |
parent | 9758ff9c74ec0c7b7342c67dbd5a9c91c732ca18 (diff) |
Erfolgloser Versuch, den Mod4-Lock wiederherzustellen (durch eine Tilde von den Scancodes der Bildschirmtastatur).
git-svn-id: https://svn.neo-layout.org@615 b9310e46-f624-0410-8ea1-cfbb3a30dc96
Diffstat (limited to '')
-rw-r--r-- | windows/autohotkey/Source/Methods-Other.ahk | 32 |
1 files changed, 16 insertions, 16 deletions
diff --git a/windows/autohotkey/Source/Methods-Other.ahk b/windows/autohotkey/Source/Methods-Other.ahk index b3da1a6..573c5ae 100644 --- a/windows/autohotkey/Source/Methods-Other.ahk +++ b/windows/autohotkey/Source/Methods-Other.ahk @@ -213,57 +213,57 @@ EncodeInteger(ref, val) guiErstellt = 0
alwaysOnTop = 1
aktuellesBild = ebene1.png
-SC056 & *F1::
-SC138 & *F1::
+~SC056 & *F1::
+~SC138 & *F1::
{
if (zeigeBildschirmTastatur)
goto Switch1
return
}
-SC056 & *F2::
-SC138 & *F2::
+~SC056 & *F2::
+~SC138 & *F2::
{
if (zeigeBildschirmTastatur)
goto Switch2
return
}
-SC056 & *F3::
-SC138 & *F3::
+~SC056 & *F3::
+~SC138 & *F3::
{
if (zeigeBildschirmTastatur)
goto Switch3
return
}
-SC056 & *F4::
-SC138 & *F4::
+~SC056 & *F4::
+~SC138 & *F4::
{
if (zeigeBildschirmTastatur)
goto Switch4
return
}
-SC056 & *F5::
-SC138 & *F5::
+~SC056 & *F5::
+~SC138 & *F5::
{
if (zeigeBildschirmTastatur)
goto Switch5
return
}
-SC056 & *F6::
-SC138 & *F6::
+~SC056 & *F6::
+~SC138 & *F6::
{
if (zeigeBildschirmTastatur)
goto Switch6
return
}
-SC056 & *F7::
-SC138 & *F7::
+~SC056 & *F7::
+~SC138 & *F7::
{
if (zeigeBildschirmTastatur)
goto Show
return
}
-SC056 & *F8::
-SC138 & *F8::
+~SC056 & *F8::
+~SC138 & *F8::
{
if (zeigeBildschirmTastatur)
goto ToggleAlwaysOnTop
|