Sending, receiving, and organizing email in Outlook on the web for business
Very clever, love this!!
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.
Very clever, love this!!
Temporary solution (a little long-winded but I use alt-shift-arrow 20 times an email and got so annoyed by this problem I had to do something):
EDIT! PLEASE SEE BEN UNGURUN'S POST BELOW for a slightly tweaked version from someone who uses TamperMonkey more regularly than me :)
// ==UserScript==
// @name Disable Alt+shift+arrow interceptions
// @description Stop websites from highjacking keyboard shortcuts
//
// @run-at document-start
// @include https://outlook.office.com/*
// @grant none
// ==/UserScript==
// Keycode for arrow keys.
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);
I will mention it to the person I found on Reddit who submitted the ticket.
Seconding that this is my experience on Microsoft Outlook Web. Appreciate this thread and hope we see Microsoft resolve this ASAP!
This doesn't just affect Microsoft365. outlook.live.com clearly shares some of the same codebase — how does someone using that (aka Hotmail) raise a support ticket?