Sending, receiving, and organizing email in Outlook on the web for business
This one works for me to finally navigate in text using alt/option freely again.... Enjoy!
https://greasyfork.org/en/scripts/512765-fix-outlook-mac-hotkeys-hijacking
This browser is no longer supported.
Upgrade to Microsoft Edge to take advantage of the latest features, security updates, and technical support.
I use the Outlook web app on MacOS, and selecting text word by word no longer works (shift + option + arrow on a Mac keyboard). This stopped working sometime this weekend. I tried multiple browsers (Chrome, Edge, Safari) and multiple Macs (Two different MBAs and one MB Mini). I tried it on a PC and it works fine. It seems that something broken on the web app for Mac users over the weekend.
This is a critical shortcut for things like copying and pasting or deleting. Anyone having the same problem and has an idea of what to do about it?
Sending, receiving, and organizing email in Outlook on the web for business
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.
This one works for me to finally navigate in text using alt/option freely again.... Enjoy!
https://greasyfork.org/en/scripts/512765-fix-outlook-mac-hotkeys-hijacking
This still makes hitting the option key open the accessibility shortcuts :-(
Here's my latest tampermonkey script to cope. Completely disables alt key propagation but things like cmd-alt-shift-V (for paste plaintext) still seem to work. Other things may not, of course.
Very quick hack, someone may have a much better way of doing this… the main problem is that e.altKey isn't set when you keyUp the altKey, so I used a workaround of a global state variable on the opt key.
Use at own risk!
// ==UserScript==
// @name Disable Alt-key in Outlook
// @description Stop Outlook using a held-down Alt key to bring up accessibility settings.
// @version 2024-09-19
// @run-at document-start
// @match https://outlook.office.com/*
// @grant none
// ==/UserScript==
var altKeyDownOutlookWorkaround = true;
(window.opera ? document.body : document).addEventListener('keyup', function(e) {
if (altKeyDownOutlookWorkaround && !e.altKey) {
altKeyDownOutlookWorkaround = false;
e.cancelBubble = true;
e.stopImmediatePropagation();
}
return false;
}, !window.opera);
(window.opera ? document.body : document).addEventListener('keydown', function(e) {
if (e.altKey && typeof(document.activeElement.role) !== 'undefined' && document.activeElement.role == 'textbox') {
altKeyDownOutlookWorkaround = true;
e.cancelBubble = true;
e.stopImmediatePropagation();
}
return false;
}, !window.opera);
Yep -- I guess the bug rollout was successful, I now have the alt problem too 😀
Either they want us all to switch to the Mac client or their QA is too easy on dev.
Really annoying issue while writing an email of pressing Option and cursor move away from textbox to activate the upper menu... Thanks Microsoft!