Win Up 鍵是作為 Tab 鍵而非 Windows 選單

Win Up 鍵是作為 Tab 鍵而非 Windows 選單

我想修改 Windows(Super) 關鍵行為,例如:

  1. {LWin Up} 鍵作為製表符而不是 Windows 選單。
  2. LWin + 字母、數字、功能鍵等 - 與正常行為類似。

如何在 Windows 7 上執行此操作?

答案1

嘗試這個:

$LWin::
    KeyWait LWin, T0.15
    If !ErrorLevel ; if you hold the LWin key for less than 200 miliseconds...
        Send {Tab}
    Else ; but if it is held for more than that...
        Send {LWin Down} ; ...hold LWin down
    KeyWait LWin ; and, in both cases, wait for it to be released
    Send, {LWin Up}
Return

如果您短按左 Win 鍵,則可以將其用作 Tab,並且如果按住 0.15 秒,它將按下按鈕為左 Win 鍵,並允許您使用 Win + 字母快捷鍵。

這是被粗暴地竊取和修改的https://autohotkey.com/board/topic/83948-how-to-remap-win-key-and-retain-win-key-other-key-combos/

所有功勞都歸功於那裡的 MasterFocus。

答案2

Windows 7 不允許您變更系統預設熱鍵。解決這個問題的唯一方法是攔截按鍵並讓它們執行其他操作。您可以使用名為的工具來完成此操作自動熱鍵

我已經有一段時間沒有使用這個工具了,所以我無法給你詳細的說明,但你可以找到教學和一些幫助在他們的網站上

相關內容