fonts in markup balloons

R

rheahirshman

Currently, when I insert comments into a Word document using the
"comment" feature of the Reviewing toolbar (I am not using track
changes), the font in each comment balloon defaults to Times New Roman
12. I cannot find any place to change this. What's even weirder is that
in one document, for no apparent reason, the default switched itself
over to Arial 12. I would like to use a larger font (I'm correcting a
lot of papers electronically these days) but have looked everythere I
can think of and can't find a place to change the balloon font in a
whole document. I can change the font it each balloon manually, but
that's not the point. Any ideas? Thanks.

- Rhea
 
R

rheahirshman

Thanks, Daiya. This was very helpful. I had already had a conversation
with a friend who's pretty Word-savvy, and between that conversation
and your note I was able to negotiate this task. Of course, one wonders
why a person could not find out anything about doing this in Word Help.
I had typed in "comment" and "comment format" and a various other (I
thought) reasonable options but, of course, since I did not know that
the issue here was specifically called "comment style" (silly me!)
there was no Help for me. If one knew the precise terminology from the
get-go, one would have used it, wouldn't one?

As it turns out, Arial 14 or Arial 16 worked fine - large enough and
clear enough. The sans serif quality make it more readable in the
comment balloons, even though serif type is usually more readable for
longer text bits.

Anyway. I will also take you up on the macro offer, since I have never
done one and would like to be able to start creating them.

Thanks again!

- Rhea
 
D

Daiya Mitchell

Thanks, Daiya. This was very helpful. I had already had a conversation
with a friend who's pretty Word-savvy, and between that conversation
and your note I was able to negotiate this task. Of course, one wonders
why a person could not find out anything about doing this in Word Help.

One does...though, actually, regardless of terminology, I don't think Word
Help explains this.
As it turns out, Arial 14 or Arial 16 worked fine - large enough and
clear enough. The sans serif quality make it more readable in the
comment balloons, even though serif type is usually more readable for
longer text bits.

New information. I would imagine Arial 14 and 16 looked the same to you?
(if not, let me know, that'd be interesting) The size of the comments is
changeable by changing the style Balloon Text, which sets the size of the
Balloons, and by default is Lucida Grande 9pt. Balloon Text controls the
size of that Comment: and Deleted: prefix. So you can increase Balloon Text,
and then the Comment Text will increase in size. However, you may not want
to, as larger balloons may run out of space on the page. (I did, see the
very end)
Anyway. I will also take you up on the macro offer, since I have never
done one and would like to be able to start creating them.

Ooh, fun, people who want to learn. :) Though I'm by no means expert--in
fact, I've just been experimenting with this because you suggested a good
idea.

This is all the code you need:
With ActiveDocument.Styles("Comment Text").Font
.Name = "Arial"
End With

This changes the font of Comment Text to Arial.
See here for what to do with that code:
http://word.mvps.org/MacWordNew/InstallMacroMac.htm
(hit refresh a few times in Safari, or use a different browser)

And the second part of this page for making the code easy to use over and
over again by putting it on a toolbar or keyboard shortcut.
http://daiya.mvps.org/pastemacros.htm

Right, you should be set up with a one-click way to change the comment text,
after following those directions and webpages. You can stop reading at this
point, if you have absorbed enough information--the rest is frills,
refinements, and details.

Read on to learn more. (part 2)

Or, you can run through the experimentation yourself. To get that code, I
just recorded a macro (Tools | Record New Macro, then go through the steps
of changing the style, until you are done, then hit stop on the record macro
toolbar). To see the macro you recorded, use Tools | Macros, select the
name, then Edit.

However, the macro recorder records *everything*, see below. If you look at
all that code, you will see how it recorded a setting for everything you saw
in the dialog boxes while changing a style. But you can delete all the
minor specifications that aren't necessary, and then those settings will be
ignored, not changed at all. So I just kept deleting and testing until I had
a nice short macro. (With...End With has to exist in a pair, though, like
parentheses--I deleted the entire first With...End With segment, but for the
second With...End With segment, I just deleted stuff from the middle of it)

(more info on editing recorded macros:
http://word.mvps.org/FAQs/MacrosVBA/ModifyRecordedMacro.htm
(hit refresh a few times in Safari, or use a different browser)
_____
With ActiveDocument.Styles("Comment Text")
.AutomaticallyUpdate = False
.BaseStyle = "Normal"
.NextParagraphStyle = "Comment Text"
End With
With ActiveDocument.Styles("Comment Text").Font
.Name = "Arial"
.Size = 11
.Bold = False
.Italic = False
.Underline = wdUnderlineNone
.UnderlineColor = wdColorAutomatic
.StrikeThrough = False
.DoubleStrikeThrough = False
.Outline = False
.Emboss = False
.Shadow = False
.Hidden = False
.SmallCaps = False
.AllCaps = False
.Color = wdColorAutomatic
.Engrave = False
.Superscript = False
.Subscript = False
.Scaling = 100
.Kerning = 0
.Animation = wdAnimationNone
End With
______

(part 3, final comments)

*My* final macro, because I decided to change both the Balloon Text and the
Comment Text, was actually this, in one macro:

With ActiveDocument.Styles("Comment Text").Font
.Name = "Century Gothic"
End With
With ActiveDocument.Styles("Balloon Text").Font
.Name = "Times"
.Size = 11
End With

Balloon Text had to be a pretty tight font to not distract my eye with the
prefixes.

The reason you might not want to increase the Balloon Text is because if
there are so many balloons Word can't display them all, it shows the first
line and you have to finish editing in the Reviewing Pane. This wouldn't be
a problem, Word automatically dumps you in it when necessary, but the
Reviewing Pane is totally buggy and some basic editing functions don't work
in it, so it's annoying to use. Increasing the Balloon Text would increase
the chances that this happens. Depends on how many comments you write, and
the resolution of your monitor.
 
J

JE McGimpsey

Daiya Mitchell said:
Ooh, fun, people who want to learn. :) Though I'm by no means expert--in
fact, I've just been experimenting with this because you suggested a good
idea.

I wrote this little add-in as an experiment:

ftp://ftp.mcgimpsey.com/word/JEMResizeComments_b1.dot

The add-in should be placed in the

Applications:Microsoft Office <X/2004>:Office:Startup:Word

folder (or the appropriate alternate startup folder).

The add-in will add a menu item to the Tools menu (called Resize
Comments). When first loaded, it will capture the Comment Text and
Balloon Text style settings as the default settings.


When you choose the menu item, you can choose the Comment Font, Balloon
Text Font, and Balloon Text size. By default, the add-in is disabled
until the Enabled checkbox is checked.

From then on, every document you open/create will have those settings
applied (they won't be saved unless you save the document). The settings
are persistent.

It's beta software, so comments here or via email are welcome, and
appropriate precautions apply.
 
J

JE McGimpsey

JE McGimpsey said:
When first loaded, it will capture the Comment Text and
Balloon Text style settings as the default settings.

This should have been:

When first loaded, it will capture the Comment Text and Balloon Text
style settings of the active document as the default settings.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top