Using the New Outlook for Mac features in educational settings
I've not seen any updates. Seems basic but apparently not important.
This browser is no longer supported.
Upgrade to Microsoft Edge to take advantage of the latest features, security updates, and technical support.
Hi all,
I've suffered a new setback in my ongoing battle with Outlook's web interface.
As of the last week or two only, when I have Outlook open in my browser (Chrome on my Mac) and I press the option key, it seems to initiate some sort of keyboard navigation thing where it shows letters under Home, View, etc. that I can press to navigate those menus via the keyboard.
So my question is: How do I get rid of this behaviour?
I use option + delete and fn + option + delete very often while typing to delete word-by-word, and a couple times an hour now I accidentally tap just the option key which suddenly jumps into this navigation thing and stops my keyboard inputs in the message I'm typing until I hit escape to go back to normal.
This amounts to a not insubstantial hit to my email productivity.
Thanks in advance!
Using the New Outlook for Mac features in educational settings
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've not seen any updates. Seems basic but apparently not important.
Hey Y'all, I'm not a real dev but i did create this dev console script that blocks outlook from capturing the option key. I tried packaging it as a tampermonkey script but outlook blocked it's execution. I may still find a solution like that. but for now this is the method:
I will report back if i find a more permanent solution. cheers!
here's the script:
// Create a more aggressive Alt key blocker
([removed_js] {
// Store the original addEventListener method
const originalAddEventListener = EventTarget.prototype.addEventListener;
// We'll keep track of our own handlers
const ourHandler = [removed_js] {
if (event.key === 'Alt' || event.keyCode === 18) {
console.log('Alt key intercepted');
event.stopImmediatePropagation();
event.preventDefault();
return false;
}
};
// Override the addEventListener method
EventTarget.prototype.addEventListener = [removed_js] {
// Call the original method
originalAddEventListener.call(this, type, listener, options);
// Add our own handler with capture for keyboard events
if (type.toLowerCase().includes('key')) {
originalAddEventListener.call(this, type, ourHandler, { capture: true, passive: false });
}
};
// Add our handler to existing keyboard events
document.addEventListener('keydown', ourHandler, { capture: true, passive: false });
document.addEventListener('keyup', ourHandler, { capture: true, passive: false });
window.addEventListener('keydown', ourHandler, { capture: true, passive: false });
window.addEventListener('keyup', ourHandler, { capture: true, passive: false });
// Directly handle key events on the document and window
const keyHandler = [removed_js] {
if (event.key === 'Alt' || event.keyCode === 18) {
console.log('Alt key blocked');
event.stopImmediatePropagation();
event.preventDefault();
return false;
}
};
// Force capture on document and window
document.onkeydown = keyHandler;
document.onkeyup = keyHandler;
window.onkeydown = keyHandler;
window.onkeyup = keyHandler;
console.log('Enhanced Alt key blocker activated');
})();
Yes I can report I have this problem as well, and it's incredibly distracting. When will MS Outlook take action to redress this problem, one that is fundamental to basic Mac usage?
Thanks for the response. I just answered your private message.
Hi Ivan Khatchatourian,
Thank you for connecting with us in the Microsoft community.
Before moving forward, could you please allow me to collect below information to narrow down your scenario?
Initially, I asked for some information as I couldn't find the above some requested information in your case description so that we can both understand some more specific scenario for your current situation.
If you share the information requested above, it will help us for additional inquiries.
Please note that my initial response may not resolve your current situation immediately. However, with your help and more detailed information, we can work together to find a specific direction for your current situation.
==============================================================================
Note: Due to forum policy and to protect sensitive information, please share with me the information requested above under "View Private Messages".
Here are the steps to open "View Private Messages":
To view private messaging options> sign in to Microsoft Community, use the email account where you posted this thread information in Microsoft Community, > click your profile picture in the upper-right corner > select the My Profile option.
![Image](https://learn-attachment.microsoft.com/api/attachments/e368ef4b-2cbc-4e1b-905e-ce88ae4769ea?platform=QnA
I'll wait for your next update on this in a private message. I will give you more information accordingly.
Your valuable cooperation will be greatly appreciated in the community.
Have a great day.
Sincerely
Vaidya Darpan