Sending, receiving, and organizing email in Outlook on the web for business
I posted the issue on Reddit ...
Could you share the Reddit link? Or will you report back here if there are updates?
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.
I posted the issue on Reddit ...
Could you share the Reddit link? Or will you report back here if there are updates?
I used TamperMonkey on Firefox / OSX, and made a few tweaks to avoid upsetting the TamperMonkey checks:
Thanks Ben, have edited my post to tell people to go to yours.
I did see after posting that people prefer match to include, but I got no warnings about anything on Tampermonkey/Chrome/OSX so left it.
I couldn't get Oliver's version to work - but these tweaks were successful! What a relief!
Thank you so much for that visibility
Excellent! I can option+shift+arrow again! Thanks for that bit o' code, Oliver.
I used TamperMonkey on Firefox / OSX, and made a few tweaks to avoid upsetting the TamperMonkey checks:
Updated code that worked for me on Firefox without TamperMonkey complaining:
// ==UserScript==
// @name Disable Alt+shift+arrow interceptions
// @description Stop websites from highjacking keyboard shortcuts
// @version 2024-04-10
// @run-at document-start
// @match https://outlook.office.com/*
// @grant none
// ==/UserScript==
// Keycode for arrow keys.
var keycodes = [37, 38, 39, 40];
(window.opera ? document.body : document).addEventListener('keydown', function(e) {
if (keycodes.indexOf(e.keyCode) != -1 && e.shiftKey && e.altKey) {
e.cancelBubble = true;
e.stopImmediatePropagation();
}
return false;
}, !window.opera);