大贤者
精华
|
战斗力 鹅
|
回帖 0
注册时间 2018-4-20
|
本帖最后由 JasonBourne 于 2019-6-10 00:55 编辑
我用的卓威鼠标,恰好和你一样的需求。工具用的AutoHotKey,这基本上是win上写按键脚本最好的软件了。
关于侧键pgup、pgdown,我自己简单写了个脚本。复制到一个.ahk结尾的文件里,拖到AHK软件,生成exe,打开就行,最后记得把exe加到开机启动。
以上更多细节或者想实现其他功能的话可以自行谷歌/百度,这软件能实现的效果超乎你想象。
#NoEnv ; Recommended for performance and compatibility with future AutoHotkey releases.
; #Warn ; Enable warnings to assist with detecting common errors.
SendMode Input ; Recommended for new scripts due to its superior speed and reliability.
SetWorkingDir %A_ScriptDir% ; Ensures a consistent starting directory.
xbutton1::
Send {PgDn}
While GetKeyState("xbutton1", "p")
{
If (A_TimeSinceThisHotkey > 500)
Send {PgDn}
sleep 30
}
Return
xbutton2::
Send {PgUp}
While GetKeyState("xbutton2", "p")
{
If (A_TimeSinceThisHotkey > 500)
Send {PgUp}
sleep 30
}
Return |
|