Author Topic: Continuous mouse scroll up or down  (Read 365 times)

Wolfhawk

  • Newbie
  • *
  • Posts: 7
Continuous mouse scroll up or down
« on: July 28, 2024, 02:11:41 PM »
Is there a way to issue a command, e.g. by saying "scroll continuously up" that that implements a steady continuous scroll action (like a human slowly rolling the mouse scroll wheel) up (or down as the case may be), whereby the scroll continues to happen till such time I issue a command like "stop scroll"

Pfeil

  • Global Moderator
  • Hero Member
  • *****
  • Posts: 4759
  • RTFM
Re: Continuous mouse scroll up or down
« Reply #1 on: July 29, 2024, 12:39:01 AM »
If you want an input to occur multiple times indefinitely, you'll need to repeat it. The rate at which the scrolling occurs should be determined by the delay between inputs, which can be increased using a pause action.

The simplest option would probably be to set the "Repeating" option for the command to "Repeat continuously until stopped", and have a second command that uses the "Stop Another Command" action to stop the first command.

Wolfhawk

  • Newbie
  • *
  • Posts: 7
Re: Continuous mouse scroll up or down
« Reply #2 on: August 03, 2024, 04:23:47 PM »
Thanks for the advise