Script for Scrolling Topic is solved

Get help with using AutoHotkey (v1.1 and older) and its commands and hotkeys
markheller007
Posts: 13
Joined: 28 May 2021, 13:03

Script for Scrolling

Post by markheller007 » 13 Aug 2022, 03:42

I'm trying to create a script that scrolls up twice, when scrolled down. Tried something like this but it din't work.

Code: Select all

Click WheelDown::
	Send Click WheelUp,
Send Click WheelUp,
	return
Last edited by gregster on 13 Aug 2022, 04:55, edited 1 time in total.
Reason: Topic moved from 'About This Community'.

User avatar
mikeyww
Posts: 26936
Joined: 09 Sep 2014, 18:38

Re: Script for Scrolling  Topic is solved

Post by mikeyww » 13 Aug 2022, 06:07

Hello,

The documentation is a good source of examples. See :arrow: Click.

Code: Select all

WheelDown::Click, WU 2
Also: Introduction and simple examples

Rohwedder
Posts: 7645
Joined: 04 Jun 2014, 08:33
Location: Germany

Re: Script for Scrolling

Post by Rohwedder » 13 Aug 2022, 06:24

Hallo,
or:

Code: Select all

WheelDown::SendInput,% "{WheelUp " Max(2, 2*A_EventInfo) "}"

Post Reply

Return to “Ask for Help (v1)”