changing view settings of hidden text

G

Guest

Hello,

I,'e made a new style called "notes" and it is in hidden text. I'd like to
be able to view this style, but to not have to also view the dots that
represent spaces and the paragraph symbols that also show up when having
"view hidden text" on.

How do I achieve this, or a similar workaround of being able to view notes.
("comments" are too clunky).

Thanks,

John
 
J

Jay Freedman

On Thu, 18 Aug 2005 15:07:01 -0700, "John Gallo" <John
Hello,

I,'e made a new style called "notes" and it is in hidden text. I'd like to
be able to view this style, but to not have to also view the dots that
represent spaces and the paragraph symbols that also show up when having
"view hidden text" on.

How do I achieve this, or a similar workaround of being able to view notes.
("comments" are too clunky).

Thanks,

John

Hi John,

The ¶ button on the toolbar switches the state of the All checkbox in
the Tools > Options > View dialog. That controls all the nonprinting
characters, including spaces, tabs, and paragraph marks, as well as
hidden text.

What you want is to leave the All unchecked (and the ¶ button not
pushed in), and just check the Hidden box in that dialog.

There isn't any built-in command to do that, but you can use this
macro and assign a toolbar button to it.

Sub ToggleHidden()
With ActiveWindow.View
.ShowHiddenText = Not .ShowHiddenText
End With
End Sub

See these articles for help if needed:

http://www.gmayor.com/installing_macro.htm
http://www.word.mvps.org/FAQs/Customization/AsgnCmdOrMacroToToolbar.htm
 

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