Microsoft Surface Pro (2017) 重新映射實體鍵盤上的音量向上/向下鍵

Microsoft Surface Pro (2017) 重新映射實體鍵盤上的音量向上/向下鍵

我有 Microsoft Surface Pro 2017。

因為音量增加/減少按鈕已經位於螢幕頂部電源按鈕旁邊...

在此輸入影像描述

所以我想重新映射鍵盤蓋上的音量向上/向下鍵。

在此輸入影像描述

我已經使用 Sharpkeys 重新映射了鍵盤蓋上的一些按鍵。

鍵盤蓋上用於調高/調低音量的 Sharpkey 代碼是什麼?

如果我不能使用 Sharpkeys,我該使用什麼?

答案1

我想這麼做,於是我開始擺弄 Sharpkeys。那是一個死胡同。我現在使用 AutoHotKey 將它們變成箭頭鍵:

#NoEnv ; Recommended for compatibility with 
AutoHotkey releases.
; #Warn ; Enable warnings to assist with detecting common errors.
SendMode Input ; Recommended for new scripts.
SetWorkingDir %A_ScriptDir% ; Ensures consistent starting directory.

#IfWinActive
  Volume_Down::Send {Right}
  Volume_Up::Send {Left}

(源自媒體網站

相關內容