Ctrl-Shift-P opens font dialog in Word 2010 instead of focusing on font size in toolbar

8,913

Microsoft Word 2010 does say that Ctrl+Shift+P is assigned to Font Size:

screenshot

But this now opens the Font window. How intrusive!

font

To replicate the old functionality of Ctrl+Shift+P, you have to first press Alt...

alt

then H...

h

and finally, F followed by S.

That's a lot of work! So, I wrote an AutoHotkey script to fix Ctrl+Shift+P:

SetTitleMatchMode, 2
#IfWinActive, Microsoft Word
^+p::
KeyWait, Ctrl
KeyWait, Shift
Send, {Alt}hfs
Exit

If you are unfamiliar with AutoHotkey, I've compiled the script for you. Just run it and it will stay in the system tray (Right click > Exit to close it).


Download: http://ahk.igalvez.net/MSWord2010Fontsize.exe, 784 KB

Share:
8,913

Related videos on Youtube

arcyqwerty
Author by

arcyqwerty

Updated on September 18, 2022

Comments

  • arcyqwerty
    arcyqwerty over 1 year

    In older versions of MS Word (2000, 2003, etc) using the keyboard shortcut Ctrl+Shift+P would focus on (highlight) the font size box in the toolbar allowing me to change the font size.

    In newer versions (2010) it instead opens the font dialog to have me select a font size.

    While it's not overly inconvenient, is there a way to revert it to the old behavior where I can just modify the size without having a window come up?

  • barlop
    barlop over 12 years
    he may not want to change it for a highlighted word. but just change it for text he'll type after changing it
  • iglvzx
    iglvzx over 12 years
    Also, highlighting the word with the keyboard (shift/ctrl+arrow) does not bring up the mini toolbar.
  • dnbrv
    dnbrv over 12 years
    Shortcuts are set in applications not in OS. Windows could not have change a shortcut for Office.
  • Shekhar
    Shekhar over 12 years
    meant microsoft :|