使用方法
-
先下载“autohotkey”。
-
下载后打开,然后直接双击插件就可以。
-
要调节长按后的速度可以右键编辑插件。
-
调节上图这里c的数目就行。
插件代码
#IfWinActive ahk_exe PotPlayerMini64.exe
speed := 1 ; 初始速度为1倍
Right::
; 长按0.3秒方向右键进行操作
KeyWait, Right, T0.3
; 如果在0.3秒内松开右键
if ErrorLevel {
ToolTip, >>>
if (speed < 3) {
speed := speed * 3
; 发送倍速命令
Send, ccccccccccccccc
}
} else {
Send {Blind}{Right}
}
Return
Right Up::
; 松开右键时发送 "z"
Send, z
; 清除屏幕上的提示信息
ToolTip
; 重置速度为1倍
speed := 1
Return
#IfWinActive


隐藏内容需要回复可以看见