Keyboard shortcut for flagging in Outlook

4

2

Is there a keyboard shortcut in outlook 2007 to flag an email instead of having to mouse click the little flag?

leora

Posted 2009-10-30T15:30:34.013

Reputation: 5 353

Answers

11

You can just press Ctr-Shift-G and then hit Enter.

Edit: You can also just press Insert if you just want to mark it with the default flag. Additionally, pressing Insert on an already flagged item marks it as completed.

djhowell

Posted 2009-10-30T15:30:34.013

Reputation: 3 535

1

Autohotkey could do it!

Use the Click function.

What you want to do is install AHK, then use the bundled Window Spy to find out the position of the button. Then you'd use something like this:

#IfWinActive, ahk_class [whatever outlook's class is, the window spy will reveal this]
[your hotkey here]::Click, X of flag, Y of flag
#IfWinActive

edit: djhowell says you can use Control+Shift+G, then return. In this case your hotkey would be:

[hotkey]::Send !+G{Return}

Keep it simple!

Phoshi

Posted 2009-10-30T15:30:34.013

Reputation: 22 001