如何才能有效地水平滚动 Microsoft Paint?(可能是 Autohotkey)

如何才能有效地水平滚动 Microsoft Paint?(可能是 Autohotkey)

我只想使用 Paint 以白板风格绘制数学问题等草图。而且我真的需要一种在页面上高效导航的方法。甚至可能像在 Photoshop 中一样:按住空格 + 移动鼠标来抓取页面。

那么是否有一些配置文件或隐藏的快捷方式可以将页面向左/向右滚动?或者 Autohotkey 中是否有一种简单的方法?

谢谢大家!

答案1

#Requires AutoHotkey v1.1.37

#IfWinActive ahk_class MSPaintApp

+WheelUp::              ; Shift + Wheel Up for horizontal scrolling left
MouseGetPos,,,id, fcontrol,1
; Loop 3 ; <-- Increase for faster scrolling
SendMessage, 0x114, 0, 0, %fcontrol%, ahk_id %id% ; 0x114 is WM_HSCROLL, 0 is SB_LINELEFT
Return

+WheelDown::            ; Shift + Wheel Down for horizontal scrolling right
MouseGetPos,,,id, fcontrol,1
; Loop 3 ; <-- Increase for faster scrolling
SendMessage, 0x114, 1, 0, %fcontrol%, ahk_id %id% ; 0x114 is WM_HSCROLL, 1 is SB_LINERIGHT
Return

#IfWinActive

来源:Windows 中的水平滚动快捷方式

相关内容