Forum Discussion
Mouse button 'Back/Forward' not working in 'New Teams'
I, too, have created an account just to nudge this thread.
I'm quite certain that the New Teams is the ONLY application in my daily workflow that does not support the use of navigation via the mouse buttons.
In fact, I'm still sticking it out with the old Teams, even now, solely due to the fact that I am much more efficient with the working mouse buttons.
Plz fix
- Dale-at-OICSep 23, 2025Copper Contributor
I got this to work, but the shortcuts are `Alt + Right Arrow` for forward and `Alt + Left Arrow` for back.
- Dale-at-OICSep 23, 2025Copper Contributor
I tried this approach, same Logi Options+ software, and it doesn't work. The mouse is sending the right keyboard commands, but it turns out the Teams application doesn't even respond to those key combinations on the keyboard, despite them being listed explicitly in the Keyboard Shortcuts menu option under the "Navigation" section. Ugh!
Basic navigation should be a fundamental concern for this app, but I guess the folks at Microsoft are more interested in making the app "look" fully featured than actually implementing those features effectively.
- DataldJun 18, 2024Brass Contributor
RobDL13 Since my reply earlier, I have used AutoHotKey with my mouse and this simple script:
XButton1::
Send !{Left}
returnXButton2::
Send !{Right}
return
Should work with any mouse as long as you have rights to install the AHK scripting language.
Might break some other programs that do not recognize the `Alt`+`L` / `R` though.