Reply
 
Thread Tools Display Modes
  #1   Report Post  
Posted to microsoft.public.word.docmanagement
Nescafe Nescafe is offline
external usenet poster
 
Posts: 1
Default Change Paragraph Spacing 1 point using keyboard

How do I increase / decrease paragraph spacing by 1 point at a time using the
keyboard or toolbar buttons (similar to changing font size with ctrl [ & ]
keys)
  #2   Report Post  
Posted to microsoft.public.word.docmanagement
Jay Freedman Jay Freedman is offline
external usenet poster
 
Posts: 9,854
Default Change Paragraph Spacing 1 point using keyboard

On Fri, 27 Oct 2006 04:04:01 -0700, Nescafe
wrote:

How do I increase / decrease paragraph spacing by 1 point at a time using the
keyboard or toolbar buttons (similar to changing font size with ctrl [ & ]
keys)


There is no built-in command or keystroke for this. There's an
OpenOrCloseUpPara command, assigned by default to Ctrl+0, that
alternately adds and removes 12 pt of Space Before. There are also
commands IncreaseParagraphSpacing and DecreaseParagraphSpacing,
neither of them assigned a keystroke by default, that add and subtract
6 pt of Space Before.

If you really need a 1-pt increment, you'll have to add these macros
to your template and assign keystrokes to them through the Tools
Customize Keyboard dialog:

Sub IncreaseParagraphSpacing1pt()
Selection.ParagraphFormat.SpaceBefore = _
Selection.ParagraphFormat.SpaceBefore + 1
End Sub

Sub DecreaseParagraphSpacing1pt()
Selection.ParagraphFormat.SpaceBefore = _
Selection.ParagraphFormat.SpaceBefore - 1
End Sub

See http://www.gmayor.com/installing_macro.htm if needed.

--
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.
  #3   Report Post  
Posted to microsoft.public.word.docmanagement
Jay Freedman Jay Freedman is offline
external usenet poster
 
Posts: 9,854
Default Change Paragraph Spacing 1 point using keyboard

On Fri, 27 Oct 2006 09:02:16 -0400, Jay Freedman
wrote:

On Fri, 27 Oct 2006 04:04:01 -0700, Nescafe
wrote:

How do I increase / decrease paragraph spacing by 1 point at a time using the
keyboard or toolbar buttons (similar to changing font size with ctrl [ & ]
keys)


There is no built-in command or keystroke for this. There's an
OpenOrCloseUpPara command, assigned by default to Ctrl+0, that
alternately adds and removes 12 pt of Space Before. There are also
commands IncreaseParagraphSpacing and DecreaseParagraphSpacing,
neither of them assigned a keystroke by default, that add and subtract
6 pt of Space Before.

If you really need a 1-pt increment, you'll have to add these macros
to your template and assign keystrokes to them through the Tools
Customize Keyboard dialog:

Sub IncreaseParagraphSpacing1pt()
Selection.ParagraphFormat.SpaceBefore = _
Selection.ParagraphFormat.SpaceBefore + 1
End Sub

Sub DecreaseParagraphSpacing1pt()
Selection.ParagraphFormat.SpaceBefore = _
Selection.ParagraphFormat.SpaceBefore - 1
End Sub

See http://www.gmayor.com/installing_macro.htm if needed.


One correction: The Decrease macro needs to be changed to avoid an
error if the Space Before is already zero:

Sub DecreaseParagraphSpacing1pt()
With Selection.ParagraphFormat
If .SpaceBefore 0 Then
.SpaceBefore = .SpaceBefore - 1
End If
End With
End Sub

--
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
Thread Tools
Display Modes

Posting Rules

Smilies are On
[IMG] code is On
HTML code is Off

Forum Jump

Similar Threads
Thread Thread Starter Forum Replies Last Post
line & paragraph spacing in Word Jackie D Microsoft Word Help 20 March 15th 09 02:15 AM
change point size and spacing in contents page magpie Microsoft Word Help 1 January 25th 06 01:42 AM
paragraph spacing in a STYLE applies within the paragraph eric matschke Microsoft Word Help 5 January 3rd 06 10:16 PM
Changing the paragraph spacing from pixels to points in Word pbakajb New Users 1 June 25th 05 06:56 PM
HOW DO I CHANGE A KEYBOARD FROM ENGLISH TO PORTUGUESE? WINDOWS IN. keyboard help Microsoft Word Help 1 January 2nd 05 09:55 PM


All times are GMT +1. The time now is 02:04 AM.

Copyright ©2000 - 2024, Jelsoft Enterprises Ltd.
Copyright ©2004-2024 Microsoft Office Word Forum - WordBanter.
The comments are property of their posters.
 

About Us

"It's about Microsoft Word"