|
我这里,win下的onenote左右不能移动,今天发现可以用AutoHotKey实现,过程如下:
进入AutoHotKey官网下载安装(我下载的是1.1版本)
编写脚本如下
#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.
;################################################################
; Shift + Wheel for horizontal scrolling
;################################################################
+WheelDown::
Send, {WheelRight}
Return
+WheelUp::
Send, {WheelLeft}
Return运行脚本,需求实现
参考
【AutoHotKey】Shift键加鼠标滚轮实现左右滑动 |
|