The Computer Oracle

Custom one-key keyboard shortcuts in Outlook 2010 or 2013?

--------------------------------------------------
Hire the world's top talent on demand or became one of them at Toptal: https://topt.al/25cXVn
and get $2,000 discount on your first invoice
--------------------------------------------------

Music by Eric Matyas
https://www.soundimage.org
Track title: Hypnotic Puzzle4

--

Chapters
00:00 Custom One-Key Keyboard Shortcuts In Outlook 2010 Or 2013?
00:48 Answer 1 Score 4
01:07 Answer 2 Score 8
01:35 Answer 3 Score 1
01:53 Accepted Answer Score 8
02:30 Thank you

--

Full question
https://superuser.com/questions/203294/c...

--

Content licensed under CC BY-SA
https://meta.stackexchange.com/help/lice...

--

Tags
#microsoftoutlook #keyboardshortcuts #microsoftoffice

#avk47



ANSWER 1

Score 8


  1. Open a new email
  2. Right-click on the Quick Access Toolbar and select Customize Quick Access Toolbar.
  3. Under Choose commands from, select All Commands.
  4. Select Signature and click the Add button.
  5. Click OK

If you had the default five items in your Quick Access Toolbar, Signature will now be #6. Access it by pressing Alt+6. Note that if you are in the Calendar then you need to release Alt before pressing 6.




ACCEPTED ANSWER

Score 8


I also thought that a shortcut where you have to press three keys at once was too difficult!

My solution was also in AutoHotKey. First you set the title match mode to RegEx because then you can match the titles through a regular expression. Put the following near the top of your script:

SetTitleMatchMode RegEx

And here is the shortcut which should only work in Outlook 2010 (note that I am using Control + Shift + 9):

#IfWinActive Inbox.*Microsoft Outlook
a:: SendInput ^+9
#IfWinActive

For Outlook 2013, the regex needs to be modified slightly:

#IfWinActive Inbox.*Outlook
a:: SendInput ^+9
#IfWinActive



ANSWER 3

Score 4


You can use Autohotkey to make any shortcut you want. It's very easy to learn, they have a good enough documentation

Note: Use #IfWinActive / #IfWinExist to target Outlook or any other program specifically.




ANSWER 4

Score 1


Actually OS X itself allows you to do this for any app for any menu item using the Keyboard/Mouse system prefs pane. For details see:

http://lifehacker.com/343328/create-a-keyboard-shortcut-for-any-menu-action-in-any-program

Jon