Sending, receiving, and organizing email in Outlook on the web for business
I'm actually experiecing this, randomly, not always:
CMD + right or left arrow => cursor disappear!
Anyone got the same?
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'm actually experiecing this, randomly, not always:
CMD + right or left arrow => cursor disappear!
Anyone got the same?
Some experimentation shows that, for me at least (Chrome/Edge on Mac), if you use normal selecting eg with the mouse or just shift-arrow, then shortcuts like Cmd-B and Cmd-I work fine for formatting. But if you use Opt-Shift-Arrow to select a word, then the formatting shortcuts don't work. In fact, using Opt-Shift-Arrow to select and then simply tapping the Command key gets you "chucked out of the editor" as others have described.
This is both with and without the (original) Tampermonkey script.
I also suspect the cause of the original problem still occurring in bulleted lists is that the shortcut was hijacked for indentation so they decided to keep that hijack in situations where you might want to use it. I disagree with that decision but there is at least some logic to it.
There is no logic, however, to how using Opt-Shift-Arrow to select text then stops the Command key working properly. Seems like a very buggy quick fix without adequate QA. (Although personally, being old-school, I almost never use formatting in emails!)
Thanks Dimitri for the updated tampermonkey script. I'm not sure how much of this new bug Tampermonkey can fix though, because we want Outlook to see the Command key for formatting.
It's not working for me, but it looks like that might be because metakey is triggered by the control key, rather than the command key, on Chrome. I've included a line this line
if (keycodes.indexOf(e.keyCode) != -1 && e.shiftKey && e.ctrlKey) {
e.cancelBubble = true;
e.stopImmediatePropagation();
and that seems to have gotten around it. However, I'm new to tampermonkey (and javascript in general), so I can't seem to get it to override the hijacking of things like Cmd-B and Cmd-I for formatting.
Currently, those key combinations just...do nothing half the time
Thank you very much for the fix!
I have added cmd + shift as well
// ==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==
(function() {
'use strict';
// 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();
}
if (keycodes.indexOf(e.keyCode) != -1 && e.shiftKey && e.metaKey) {
e.cancelBubble = true;
e.stopImmediatePropagation();
}
return false;
}, !window.opera);
})();
This is still an issue for me, with the cmd key specifically. Now, even simple key bindings like cmd+i (for italics) trigger unexpected behavior while drafting text for an email.