数位板+onenote铅笔橡皮快速切换的实现方式

配置:高漫1060pro + windows11 + onenote(office最新版)

众所周知onenote最新版取消了笔收藏夹这一选项,导致选择画笔很不方便,一般情况下无法使画笔和橡皮快速切换,在一番探索下得到了以下方案

笔者之前使用c++做过控制键鼠点击等程序,但是黑窗口弹出需要一定时间很不方便,在和朋友交流下得到了知道了有一个叫AutoHotkey的编程语言,专门用来进行这样的操作

由上图可以知道切换画笔的操作是Alt+D+G+键盘右键*多次+键盘左键(切回黑色画笔)+Enter

这样就可以编写ahk脚本

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
Send {Alt Down}
Sleep 50
Send {Alt Up}
Send {D Down}
Sleep 50
Send {D Up}
Send {G Down}
Sleep 50
Send {G Up}
Send {Right Down}
Sleep 50
Send {Right Up}
Send {Right Down}
Sleep 50
Send {Right Up}
Send {Right Down}
Sleep 50
Send {Right Up}
Send {Left Down}
Sleep 50
Send {Left Up}
Send {Enter Down}
Sleep 50
Send {Enter Up}

;Click, 440, 180 ;也可以直接让鼠标点击固定坐标

return

具体延迟和操作可以自行更改

然后放入路径(前提是数位板支持)就可以了

UPD.后来我发现切换功能里的这个可以一键切换···

不过无论如何是可以用了

不支持运行程序和切换功能的数位板,估计不能一键切换了