Selecting text no longer working properly in Outlook Web App on MacOS

Anonymous
2024-04-03T01:13:07+00:00

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?

Outlook | Web | Outlook on the web for business | Email

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.

0 comments No comments

112 answers

Sort by: Newest
  1. Anonymous
    2024-05-02T07:27:16+00:00

    I'm actually experiecing this, randomly, not always:

    CMD + right or left arrow => cursor disappear!

    Anyone got the same?

    Was this answer helpful?

    3 people found this answer helpful.
    0 comments No comments
  2. Anonymous
    2024-04-30T22:21:15+00:00

    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.

    Was this answer helpful?

    1 person found this answer helpful.
    0 comments No comments
  3. Anonymous
    2024-04-30T22:07:58+00:00

    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

    Was this answer helpful?

    0 comments No comments
  4. Anonymous
    2024-04-30T21:18:46+00:00

    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);
    })();
    

    Was this answer helpful?

    1 person found this answer helpful.
    0 comments No comments
  5. Anonymous
    2024-04-30T18:00:30+00:00

    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.

    Was this answer helpful?

    1 person found this answer helpful.
    0 comments No comments