Changeset 559

Show
Ignore:
Timestamp:
06/22/08 03:10:47 (5 years ago)
Author:
matthias
Message:
  • Shift+Alt+Tab Problem gelöst (muss noch mehr auf Nebeneffekte getestet werden)
Files:
1 modified

Legend:

Unmodified
Added
Removed
  • windows/autohotkey/neo20-all-in-one.ahk

    r558 r559  
    99                  - Bessere L�sung f�r das leeren von PriorDeadKey finden, damit die Sondertasten 
    1010                    nicht mehr abgefangen werden m�ssen. 
    11                   - Alt+Tab+Shift sollte Alt+Tab umkehrt 
    1211                  - Testen ob die Capslockl�sung (siehe *1:: ebene 1) auch f�r Numpad gebraucht wird 
    1312                  - Sind Ebenen vom Touchpad noch richtig? 
     
    1716    CHANGEHISTORY: 
    1817                  Aktuelle Revision (von Matthias Berg): 
     18                  - Shift+Alt+Tab Problem gel�st (muss noch mehr auf Nebeneffekte getestet werden) 
     19                  Revision 558 (von Matthias Berg): 
    1920                  - Icon-Bug behoben 
    2021                    * Hotkeys d�rfen nicht vor der folgenden Zeile stehen: 
     
    307308      if (IsMod4Locked)  
    308309      { 
    309          MsgBox Mod4-Feststellung aufgebehoben 
     310;         MsgBox Mod4-Feststellung aufgebehoben 
    310311         IsMod4Locked = 0 
    311312      } 
    312313      else 
    313314      { 
    314          MsgBox Mod4 festgestellt: Um Mod4 wieder zu l�sen dr�cke beide Mod4 Tasten gleichzeitig  
     315;         MsgBox Mod4 festgestellt: Um Mod4 wieder zu l�sen dr�cke beide Mod4 Tasten gleichzeitig  
    315316         IsMod4Locked = 1 
    316317      } 
     
    323324return  
    324325 
    325 /* ; das folgende wird seltsamerweise nicht gebraucht :) 
     326/* ; das folgende wird seltsamerweise nicht gebraucht :) oder f�hrt zum AltGr Bug; Umschalt+� (Mod4) Zeigt � 
    326327SC138 & *<:: 
    327328      if (IsMod4Locked)  
     
    41544155   if ( GetKeyState("SC038","P") ) 
    41554156   { 
    4156       SC038 & Tab::AltTab            ; http://de.autohotkey.com/docs/Hotkeys.htm#AltTabDetail 
     4157        Send,{Blind}{AltDown}{tab} 
     4158     
     4159/* 
     4160     if (isShiftPressed()) 
     4161     { 
     4162      Send,{ShiftDown}{AltDown}{tab} 
     4163     } 
     4164     else 
     4165     {        
     4166;       msgbox alt+tab 
     4167                Send,{AltDown}{tab} 
     4168      ; SC038 & Tab::AltTab            ; http://de.autohotkey.com/docs/Hotkeys.htm#AltTabDetail 
     4169     } 
     4170*/ 
    41574171   } 
    41584172   else if GetKeyState("#","P") 
     
    41694183return 
    41704184 
    4171 *SC038::                    ; LAlt, damit AltTab funktioniert 
    4172    send {blind}{LAlt} 
     4185*SC038 up:: 
     4186   PriorDeadKey := ""   CompKey := "" 
     4187   send {blind}{AltUp} 
     4188return 
     4189    
     4190*SC038 down::                    ; LAlt, damit AltTab funktioniert 
     4191        Send,{Blind}{AltDown} 
    41734192   PriorDeadKey := ""   CompKey := "" 
    41744193return