Microsoft Surface Pro(2017)重新映射 Type Cover 上的音量增大/减小键

Microsoft Surface Pro(2017)重新映射 Type Cover 上的音量增大/减小键

我有一台 Microsoft Surface Pro 2017。

因为音量增大/减小按钮已经位于屏幕顶部电源按钮旁边......

在此处输入图片描述

所以我想重新映射 Type Cover 上的音量增大/减小键。

在此处输入图片描述

我已经使用 Sharpkeys 重新映射了 Type Cover 上的某些按键。

键盘盖上音量增大/减小的 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}

(源自medium.com

相关内容