I have shortcuts within Outlook 2010, but I don't like that the combos within are three button combos (Ctrl+Shift+9). So, I want to have hotkeys to those shortcuts when Outlook is active. My code is below, why isn't it working?
;++++++++++++++++++++++++++++++++++++++;
;OutlookShortcuts;
SetTitleMatchMode, 2
GroupAdd, shortcut, - Microsoft Outlook
#IfWinActive, ahk_group shortcut
!c::^+7 ;move to inbox;
!d::^+6 ;mark as unread;
!e::^+5 ;mark as read;
return