Page 1 of 1

Another Alt + Tab, with a twist

Posted: 15 Apr 2021, 22:14
by cduck28z
Good Evening,

I've tried several times (unsuccessfully) at writing a very simple script. I essentially want to turn my mouse wheel into my ALT TAB, but with bit more functionality. I would like to hold down RButton and scroll either WheelUp or Wheel Down to pull up my AltTabMenu, and for it to remain open until I release RButton. While the AltTabMenu is open, further scrolling UP or DOWN with the mouse wheel will scroll through my open tabs until I find the one that I'm looking for. Once the correct tab is highlighted, releasing RButton will pull up the selected tab and close AltTabMenu.

I'm sorry if this is a poor description, but any help is greatly appreciated!

Re: Another Alt + Tab, with a twist

Posted: 15 Apr 2021, 23:14
by boiler
Like this?

Code: Select all

~RButton & WheelUp::AltTab
~RButton & WheelDown::ShiftAltTab

Re: Another Alt + Tab, with a twist

Posted: 16 Apr 2021, 09:29
by that1ahkpro
boiler wrote:
15 Apr 2021, 23:14
Like this?

Code: Select all

~RButton & WheelUp::AltTab
~RButton & WheelDown::ShiftAltTab
should be good to go except some thing like

Code: Select all

keydown
might work? for the last part

Re: Another Alt + Tab, with a twist

Posted: 16 Apr 2021, 09:44
by boiler
that1ahkpro wrote: should be good to go except some thing like

Code: Select all

keydown
might work? for the last part
The script I posted does the last part as well.

Re: Another Alt + Tab, with a twist

Posted: 29 Apr 2021, 21:59
by cduck28z
boiler wrote:
15 Apr 2021, 23:14
Like this?

Code: Select all

~RButton & WheelUp::AltTab
~RButton & WheelDown::ShiftAltTab
So simple and it works perfectly. Thank you so much! One less thing I have to do with my keyboard and one more reason to love my gaming mouse for every-day tasks!