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

link|improve this question

feedback

2 Answers

up vote 5 down vote accepted

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.

link|improve this answer
feedback

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!

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.