PC Review


Reply
Thread Tools Rate Thread

Adding Individual Fonts to Quick Access Toolbar

 
 
TMoore615
Guest
Posts: n/a
 
      27th Oct 2009
In Word 2003 I could customize a toolbar, select Font under Categories, then
select a particular font from the displayed list, and then place a button on
the toolbar. That button would change the current font to the one connected
to the button or reformat selected text to that font.

I can not find this command in Word 2007 when I try to customize the Quick
Access Toolbar. Has this capability been deleted from Word 2007, or has it
been renamed, or what. I need to be able to quickly change the current font
and not being able to do so in Word 2007 is driving me crazy. I'm even
thinking of going back to Word 2003.

Any help would be greatly appreciated
 
Reply With Quote
 
 
 
 
Greg Maxey
Guest
Posts: n/a
 
      27th Oct 2009
On Oct 26, 8:24*pm, TMoore615 <TMoore...@discussions.microsoft.com>
wrote:
> In Word 2003 I could customize a toolbar, select Font under Categories, then
> select a particular font from the displayed list, and then place a buttonon
> the toolbar. That button would change the current font to the one connected
> to the button or reformat selected text to that font.
>
> I can not find this command in Word 2007 when I try to customize the Quick
> Access Toolbar. Has this capability been deleted from Word 2007, or has it
> been renamed, or what. I need to be able to quickly change the current font
> and not being able to do so in Word 2007 is driving me crazy. I'm even
> thinking of going back to Word 2003.
>
> Any help would be greatly appreciated


I could be wrong of course, but that particular functionality does
appear to be absent from Word2007. You can add the entire fonts
gallery to the QAT, but that is likely not what you are looking for.

You could create a VBA module in your template (e.g., call it myFonts
or something) then add snipets of code like:

Sub ApplyFontChiller()
Selection.Range.Font.Name = "Chiller"
End Sub

Sub ApplyFontArial
Selection.Range.Font.Name = "Arial"
End Sub

etc.,


Then add these procedures to your QAT. Unfortunately the QAT does not
take labels (only icons) and the selection of icons if rather sparse :-
(

The other option is a full blown ribbon customization to add a new Tab
"Fonts" or and a Group "Fonts" to one of the existing tabs. This
opens a whole range of customization options (labels, images,
screentip, etc.) Not a walk in the park, but certainly doable. The
following should get you off to a start:

http://gregmaxey.mvps.org/Customize_Ribbon.htm



 
Reply With Quote
 
Jay Freedman
Guest
Posts: n/a
 
      27th Oct 2009
On Mon, 26 Oct 2009 17:24:01 -0700, TMoore615
<(E-Mail Removed)> wrote:

>In Word 2003 I could customize a toolbar, select Font under Categories, then
>select a particular font from the displayed list, and then place a button on
>the toolbar. That button would change the current font to the one connected
>to the button or reformat selected text to that font.
>
>I can not find this command in Word 2007 when I try to customize the Quick
>Access Toolbar. Has this capability been deleted from Word 2007, or has it
>been renamed, or what. I need to be able to quickly change the current font
>and not being able to do so in Word 2007 is driving me crazy. I'm even
>thinking of going back to Word 2003.
>
>Any help would be greatly appreciated


The story here isn't a good one.

- The designers probably think it's enough to put the font dropdown on
the mini toolbar, but that's not good because there's no Recently Used
list that's easy to get to.

- You can still assign a keyboard shortcut to a font, but then you
need to remember which shortcut is for which font.

- You can create a macro like this one:

Sub CourierNew()
Selection.Font.Name = "Courier New"
End Sub

and then assign a Quick Access Toolbar button to the macro
(http://gregmaxey.mvps.org/Add_Macro_To_QAT.htm). Unfortunately, you
can't have text on a QAT button, and the selection of icons (which is
not expandable) doesn't have any that suggest a particular font.

- Or you can use the old buttons as shown at
http://www.gmayor.com/Toolbars_in_word_2007.htm.

--
Regards,
Jay Freedman
Microsoft Word MVP FAQ: http://word.mvps.org
Email cannot be acknowledged; please post all follow-ups to the newsgroup so all may benefit.
 
Reply With Quote
 
Jay Freedman
Guest
Posts: n/a
 
      27th Oct 2009
> On Mon, 26 Oct 2009 17:24:01 -0700, TMoore615
> <(E-Mail Removed)> wrote:
>
>> In Word 2003 I could customize a toolbar, select Font under
>> Categories, then select a particular font from the displayed list,
>> and then place a button on the toolbar. That button would change the
>> current font to the one connected to the button or reformat selected
>> text to that font.
>>
>> I can not find this command in Word 2007 when I try to customize the
>> Quick Access Toolbar. Has this capability been deleted from Word
>> 2007, or has it been renamed, or what. I need to be able to quickly
>> change the current font and not being able to do so in Word 2007 is
>> driving me crazy. I'm even thinking of going back to Word 2003.
>>
>> Any help would be greatly appreciated


Greg and I both forgot to mention the most useful alternative: For each font
you want to use frequently, define a character style that contains that
font. The character styles can be displayed in the Quick Styles area of the
Home menu, and they can also be assigned keyboard shortcuts.

The quickest way to create a character style is:

- Write some text in Normal style. Format it with the desired font, but with
no other direct formatting (that is, nothing that isn't part of the Normal
style). Select some of that text.

- At the right end of the Styles group on the Home ribbon, there are two
small up and down arrows and, below them, another down arrow. Click that
third arrow.

- When the full gallery opens, go to the bottom and click Save Selection as
a New Quick Style.

- In the little dialog that appears, click the Modify button.

- In the New Style dialog, change the Name box to the name of the font;
change the Style Type box to Character; and make sure the Style Based On box
says "(underlying properties)". At the bottom, click the option "New
documents based on this template". Make sure "Add to Quick Style list" is
checked. Click OK.

--
Regards,
Jay Freedman
Microsoft Word MVP FAQ: http://word.mvps.org
Email cannot be acknowledged; please post all follow-ups to the newsgroup so
all may benefit.


 
Reply With Quote
 
Greg Maxey
Guest
Posts: n/a
 
      28th Oct 2009
Jay,

I have to disagree. You forgot and I have just learned a new tip ;-).
Thanks.

Extending your suggestion, the Quick Style gallery can be added to the QAT.
While not a 1 click operation, still this little collection of frequently
used styles and "fonts" would be very handy without having to change ribbon
tabs.

Jay Freedman wrote:
>> On Mon, 26 Oct 2009 17:24:01 -0700, TMoore615
>> <(E-Mail Removed)> wrote:
>>
>>> In Word 2003 I could customize a toolbar, select Font under
>>> Categories, then select a particular font from the displayed list,
>>> and then place a button on the toolbar. That button would change the
>>> current font to the one connected to the button or reformat selected
>>> text to that font.
>>>
>>> I can not find this command in Word 2007 when I try to customize the
>>> Quick Access Toolbar. Has this capability been deleted from Word
>>> 2007, or has it been renamed, or what. I need to be able to quickly
>>> change the current font and not being able to do so in Word 2007 is
>>> driving me crazy. I'm even thinking of going back to Word 2003.
>>>
>>> Any help would be greatly appreciated

>
> Greg and I both forgot to mention the most useful alternative: For
> each font you want to use frequently, define a character style that
> contains that font. The character styles can be displayed in the
> Quick Styles area of the Home menu, and they can also be assigned
> keyboard shortcuts.
> The quickest way to create a character style is:
>
> - Write some text in Normal style. Format it with the desired font,
> but with no other direct formatting (that is, nothing that isn't part
> of the Normal style). Select some of that text.
>
> - At the right end of the Styles group on the Home ribbon, there are
> two small up and down arrows and, below them, another down arrow.
> Click that third arrow.
>
> - When the full gallery opens, go to the bottom and click Save
> Selection as a New Quick Style.
>
> - In the little dialog that appears, click the Modify button.
>
> - In the New Style dialog, change the Name box to the name of the
> font; change the Style Type box to Character; and make sure the Style
> Based On box says "(underlying properties)". At the bottom, click the
> option "New documents based on this template". Make sure "Add to
> Quick Style list" is checked. Click OK.


--
Greg Maxey

See my web site http://gregmaxey.mvps.org
for an eclectic collection of Word Tips.


 
Reply With Quote
 
 
 
Reply

Thread Tools
Rate This Thread
Rate This Thread:

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are Off


Similar Threads
Thread Thread Starter Forum Replies Last Post
adding "dictionary" to excel quick-access toolbar susie margaret Windows XP General 2 25th Feb 2009 03:42 PM
adding "dictionary" to excel quick-access toolbar susie margaret Microsoft Excel Misc 1 25th Feb 2009 09:06 AM
adding commands to Quick Access toolbar Jake Microsoft Excel Misc 1 15th Aug 2008 10:54 PM
Adding Quick Launch Toolbar =?Utf-8?B?YmlsbGpvaG5zdG9uZUBob3RtYWlsLmNvbQ==?= Windows XP Customization 3 12th Nov 2007 05:36 PM
Crash adding to Quick Launch toolbar Joel Parker Windows Vista General Discussion 1 5th Oct 2007 08:28 PM


Features
 

Advertising
 

Newsgroups
 


All times are GMT +1. The time now is 01:32 AM.