Home | Contact Us | FAQ | Search & Site Map | Link to Us
Sign In | Join | Other 45 Sites in Network
Home
DiscussionsAccessExcelInfoPathOutlookPowerPointPublisherWord
DirectoryUser Groups
Related Topics
Outlook ExpressInternet ExplorerWindowsMS Server ProductsMore Topics ...

MS Office Forum / Word / Numbering / November 2006

Tip: Looking for answers? Try searching our database.

Bullet point indents

Thread view: 
Enable EMail Alerts  Start New Thread
Thread rating: 
Jay - 01 Nov 2006 15:37 GMT
When I add a bullet point to a paragraph (by clicking on the bullet toolbar button) the left indent
and the hanging indent both move by 0.63cm to the right. Also, a tab stop is added at 1.27cm to the
right of the original indent position. I would prefer it if the left indent didn't change, and the
hanging indent moves by 0.5cm to the right, and a tab stop is added at 0.5cm to the right of the
original indent position.

Is there a way to change the default behaviour of  behaviour of the bullet toolbar button to do
this? If this is related to a template, I would like it to be stored in normal.dot.
Suzanne S. Barnhill - 01 Nov 2006 16:51 GMT
It is difficult to change the behavior of the Bullets button, but you can
customize the List Bullet style (which already meets most of your
requirements) and apply it with the built-in keyboard shortcut Ctrl+Shift+L.

Signature

Suzanne S. Barnhill
Microsoft MVP (Word)
Words into Type
Fairhope, Alabama USA
Word MVP FAQ site: http://word.mvps.org
Email cannot be acknowledged; please post all follow-ups to the newsgroup so
all may benefit.

> When I add a bullet point to a paragraph (by clicking on the bullet toolbar button) the left indent
> and the hanging indent both move by 0.63cm to the right. Also, a tab stop is added at 1.27cm to the
[quoted text clipped - 4 lines]
> Is there a way to change the default behaviour of  behaviour of the bullet toolbar button to do
> this? If this is related to a template, I would like it to be stored in normal.dot.
Jay - 02 Nov 2006 10:10 GMT
Thanks Suzanne,

My problem is that the users aren't keen on styles - they want to use the bullet button. Is there a
difficult way? Perhaps overriding the bullet button with a VBA macro?

Jay

It is difficult to change the behavior of the Bullets button, but you can
customize the List Bullet style (which already meets most of your
requirements) and apply it with the built-in keyboard shortcut Ctrl+Shift+L.

Signature

Suzanne S. Barnhill
Microsoft MVP (Word)
Words into Type
Fairhope, Alabama USA
Word MVP FAQ site: http://word.mvps.org
Email cannot be acknowledged; please post all follow-ups to the newsgroup so
all may benefit.

> When I add a bullet point to a paragraph (by clicking on the bullet
toolbar button) the left indent
> and the hanging indent both move by 0.63cm to the right. Also, a tab stop
is added at 1.27cm to the
> right of the original indent position. I would prefer it if the left
indent didn't change, and the
> hanging indent moves by 0.5cm to the right, and a tab stop is added at
0.5cm to the right of the
> original indent position.
>
> Is there a way to change the default behaviour of  behaviour of the bullet
toolbar button to do
> this? If this is related to a template, I would like it to be stored in
normal.dot.
Stefan Blom - 02 Nov 2006 11:15 GMT
This simple macro intercepts the built-in FormatBulletDefault command
(which runs when you click the Bullet button) and applies either the
List Bullet style or the Normal style to the selection.

Sub FormatBulletDefault()
   Dim BulletStyleName As String
   Dim AppliedStyleName As String
   BulletStyleName = _
       ActiveDocument.Styles(wdStyleListBullet).NameLocal
   AppliedStyleName = Selection.Paragraphs(1).Style.NameLocal
   If BulletStyleName = AppliedStyleName Then
       Selection.Style = wdStyleNormal
       'If you prefer Body Text, use wdStyleBodyText instead
   Else
       Selection.Style = BulletStyleName
   End If
End Sub

Put the macro in an add-in or in the normal.dot template.

If you need assistance, see http://gmayor.com/installing_macro.htm.

Signature

Stefan Blom
Microsoft Word MVP

> Thanks Suzanne,
>
[quoted text clipped - 21 lines]
> > this? If this is related to a template, I would like it to be stored in
> normal.dot.
Jay - 07 Nov 2006 09:45 GMT
Thanks for your kind help Stefan, and sorry for the late reply. I will try this.

Jay

This simple macro intercepts the built-in FormatBulletDefault command
(which runs when you click the Bullet button) and applies either the
List Bullet style or the Normal style to the selection.

Sub FormatBulletDefault()
   Dim BulletStyleName As String
   Dim AppliedStyleName As String
   BulletStyleName = _
       ActiveDocument.Styles(wdStyleListBullet).NameLocal
   AppliedStyleName = Selection.Paragraphs(1).Style.NameLocal
   If BulletStyleName = AppliedStyleName Then
       Selection.Style = wdStyleNormal
       'If you prefer Body Text, use wdStyleBodyText instead
   Else
       Selection.Style = BulletStyleName
   End If
End Sub

Put the macro in an add-in or in the normal.dot template.

If you need assistance, see http://gmayor.com/installing_macro.htm.

Signature

Stefan Blom
Microsoft Word MVP

"Jay" wrote in message news:eUmO25l$GHA.144@TK2MSFTNGP02.phx.gbl...

> Thanks Suzanne,
>
> My problem is that the users aren't keen on styles - they want to
use the bullet button. Is there a
> difficult way? Perhaps overriding the bullet button with a VBA
macro?

> Jay
>
> It is difficult to change the behavior of the Bullets button, but
you can
> customize the List Bullet style (which already meets most of your
> requirements) and apply it with the built-in keyboard shortcut
Ctrl+Shift+L.

newsgroup so
> all may benefit.
>
> "Jay" <nospam> wrote in message
> news:%234UZ9Mc$GHA.4348@TK2MSFTNGP04.phx.gbl...
> > When I add a bullet point to a paragraph (by clicking on the
bullet
> toolbar button) the left indent
> > and the hanging indent both move by 0.63cm to the right. Also, a
tab stop
> is added at 1.27cm to the
> > right of the original indent position. I would prefer it if the
left
> indent didn't change, and the
> > hanging indent moves by 0.5cm to the right, and a tab stop is
added at
> 0.5cm to the right of the
> > original indent position.
> >
> > Is there a way to change the default behaviour of  behaviour of
the bullet
> toolbar button to do
> > this? If this is related to a template, I would like it to be
stored in
> normal.dot.
 
Sign In
Join
My Latest Posts
My Monitored Threads
My Blog
My Photo Gallery
My Profile
My Homepage

Start New Thread
Enable EMail Alerts
Rate this Thread



©2008 Advenet LLC   Privacy Policy - Terms of Use
This website includes both content owned or controlled by Advenet as well as content owned or controlled by third parties.