Я создал следующий скрипт, чтобы иметь опыт, похожий на "Недавние приложения" для Android, но я столкнулся с некоторыми глюками; иногда кнопка Alt остается "Вниз" после переключения между приложениями. любая помощь в решении этого вопроса, пожалуйста? PS Я немного новичок в программировании

XButton2::
KeyWait, XButton2, T0.3
If ErrorLevel
{
    Send, {Alt down}{Tab}{Alt up}
    KeyWait, XButton2
}
Else
{
    AltTabMenu := true  ; assign the Boolean value "true" or "1" to this variable
    Send, {Alt down}{Tab}
    return

    ; The #If directive creates context-sensitive hotkeys:

    #If (AltTabMenu) ; If this variable has the value "true"

    ; The * prefix fires the hotkey even if extra modifiers (in this case Alt) are being held down

    *Enter::
    *MButton::
    Send {Enter}
    Send {Blind}{Alt Up} ; release Alt
    AltTabMenu := false
    return

    ~*LButton::
    Click
    Send {Blind}{Alt Up} ; release Alt
    AltTabMenu := false
    return



    ; menu navigation by scrolling the mouse wheel:

    *WheelUp:: Send {Right}
    *WheelDown:: Send {Left}

    #If ; turn off context sensitivity
}
Return

0