Conversations involving multiple participants, allowing collaboration and information sharing in Teams
OUTRAGE HERE:
This browser is no longer supported.
Upgrade to Microsoft Edge to take advantage of the latest features, security updates, and technical support.
I am often working in other windows but have a lot of teams messages that I need to address. This results in my sending meaningless messages accidentally when I hit ENTER thinking I am in a different window but I am really in teams. How do I by default prevent the ENTER button from sending a message?
Conversations involving multiple participants, allowing collaboration and information sharing in Teams
Locked Question. This question was migrated from the Microsoft Support Community. You can vote on whether it's helpful, but you can't add comments or replies or follow the question.
One solution is to create an AutoHotkey script that is scoped so it only affects keystrokes within the teams application
The script (AutoHotkey v2.0) would look something like this:
#HotIf WinActive("ahk_exe ms-teams.exe")
Enter::+Enter
You would have to rely on the other default "Send Message" key (which works even when you are in advanced edit mode (click the "A with pencil" icon in the bar to add formatting, etc)) or clicking the send icon in order to send your message as the "Enter" key would now be remapped (this may also have adverse side effects in other areas of the app like settings or while using plugins, so use with care)
If you wanted to map a custom (alternate) key to send the message, simply add something like this to your script:
F12::^Enter
Which would remap the F12 key to ctrl+Enter while within the teams app.
For a docs on AutoHokey, see here: https://www.autohotkey.com/docs/
Ok, ok.
bYou get a thumbs-up for trying to be helpful in a thread where we're all just complaining.
Can MS teams be any worse?
Frustrated as Slack has had this solution for years.