autohotkey鼠标滚轮

autohotkey鼠标 滚轮

键WheelDown 和键 WheelUp

键WheelLeft 和键 WheelRight

举例

MButton & WheelDown:: ; 中键+下滑
	MsgBox You turned the mouse wheel down while holding down the middle button.
	return
^!WheelUp:: ; alt+ctrl+上滑
	MsgBox You rotated the wheel up while holding down Control+Alt.
	retrun

高级示范

~LControl & WheelUp::  ; 向左滚动.
ControlGetFocus, fcontrol, A
Loop 2  ; <-- 增加这个值来加快滚动速度.
    SendMessage, 0x114, 0, 0, %fcontrol%, A  ; 0x114 是 WM_HSCROLL, 它后面的 0 是 SB_LINELEFT.
return

~LControl & WheelDown::  ; 向右滚动.
ControlGetFocus, fcontrol, A
Loop 2  ; <-- 增加这个值来加快滚动速度.
    SendMessage, 0x114, 1, 0, %fcontrol%, A  ; 0x114 是 WM_HSCROLL, 它后面的 1 是 SB_LINERIGHT.
return

我的实用脚本

按住esc+space, 页面向下滚动三格, 用于当前行居中(打字机模式)
已经将capslock映射为esc

esc & Space::
	Send, {WheelDown 6}
	return
评论 1
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值