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: Most helpful
  1. Anonymous
    2024-04-10T16:12:47+00:00

    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 :)

    1. For Chrome/Edge, install the TamperMonkey extension so you can add a UserScript (Firefox has UserScripts built-in I think)
    2. Add the following UserScript (modified from https://superuser.com/questions/168087/how-to-forbid-keyboard-shortcut-stealing-by-websites-in-firefox):

    // ==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);

    Was this answer helpful?

    10+ people found this answer helpful.
    0 comments No comments
  2. Anonymous
    2024-04-03T20:11:48+00:00

    Agree 100%. Hopefully someone can help us or Microsoft fixes this!

    Was this answer helpful?

    10+ people found this answer helpful.
    0 comments No comments
  3. Anonymous
    2024-04-10T22:38:44+00:00

    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:

    • Changed @include to @match
    • Added @version with today's date afterward (doesn't matter but makes TamperMonkey happy)
    • added "var" before the "keycodes" line

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

    Was this answer helpful?

    10+ people found this answer helpful.
    0 comments No comments
  4. Anonymous
    2024-04-05T12:32:11+00:00

    I have the same problem since yesterday, this is super annoying because it's such a basic shortcut. You can't just appoint that to another function! Hope this can be fixed quickly.

    I can't create a support ticket myself since I am not an admin in my company but I left feedback in the app at least.

    Best,

    Sebastian

    Was this answer helpful?

    10+ people found this answer helpful.
    0 comments No comments
  5. Anonymous
    2024-04-08T06:17:17+00:00

    I posted the issue on Reddit and someone who is an admin said they submitted it and got this promising response:

    Good news.. I’m an admin and logged a ticket with MS. This is their response:

    […]

    Nice, that sounds promising indeed. Thanks for keeping us posted!

    Was this answer helpful?

    8 people found this answer helpful.
    0 comments No comments