A Microsoft Office (Excel, Word) forum. OfficeFrustration

If this is your first visit, be sure to check out the FAQ by clicking the link above. You may have to register before you can post: click the register link above to proceed. To start viewing messages, select the forum that you want to visit from the selection below.

Go Back   Home » OfficeFrustration forum » Microsoft Word » New Users
Site Map Home Register Authors List Search Today's Posts Mark Forums Read  

Anyone know Keyboard Shortcuts?



 
 
Thread Tools Display Modes
  #1  
Old June 6th, 2004, 11:22 PM
JethroUK©
external usenet poster
 
Posts: n/a
Default Anyone know Keyboard Shortcuts?

Is there a keyboard short for:

Increasing/Decreasing character spacing by 1 point
and/or
Increasing/Decreasing line spacing by 1 point


  #2  
Old June 7th, 2004, 03:23 AM
Herb Tyson [MVP]
external usenet poster
 
Posts: n/a
Default Anyone know Keyboard Shortcuts?

Word does not have built-in commands or keystrokes for either of those. You
would need to write macros, then assign them to the desired keystrokes.

--
Herb Tyson MS MVP
Please respond in the newsgroups so everyone can follow along.
http://www.herbtyson.com
"JethroUK©" wrote in message
news:ZINwc.720$L64.371@newsfe3-gui...
Is there a keyboard short for:

Increasing/Decreasing character spacing by 1 point
and/or
Increasing/Decreasing line spacing by 1 point




  #3  
Old June 7th, 2004, 06:41 AM
AA
external usenet poster
 
Posts: n/a
Default Anyone know Keyboard Shortcuts?

What about Condensed: (under All Commands)?

and then you get to pick by how many points



Word does not have built-in commands or keystrokes for either of those. You
would need to write macros, then assign them to the desired keystrokes.


Is there a keyboard short for:

Increasing/Decreasing character spacing by 1 point
and/or
Increasing/Decreasing line spacing by 1 point





  #4  
Old June 7th, 2004, 10:59 AM
Stephen Glynn
external usenet poster
 
Posts: n/a
Default Anyone know Keyboard Shortcuts?

Or you could create some new styles and assign keyboard shortcuts to them.

Steve

AA wrote:

What about Condensed: (under All Commands)?

and then you get to pick by how many points




Word does not have built-in commands or keystrokes for either of those. You
would need to write macros, then assign them to the desired keystrokes.



Is there a keyboard short for:

Increasing/Decreasing character spacing by 1 point
and/or
Increasing/Decreasing line spacing by 1 point





  #5  
Old June 7th, 2004, 09:12 PM
Klaus Linke
external usenet poster
 
Posts: n/a
Default Anyone know Keyboard Shortcuts?

Hi Jethro,

For line spacing, there are the built-in shortcuts Ctrl+1 (single), Ctrl+5
(1.5) and Ctrl+2 (double).

As Steven said, you'd be better off to customize your styles.

If you want to vary character spacing for copy-fitting, +/- 1 pt would be
much too much. Perhaps Suzanne Barnhill's article
http://www.word.mvps.org/faqs/formatting/FitCopy.htm has some better ideas.

Regards,
Klaus



"JethroUK©" wrote:
Is there a keyboard short for:

Increasing/Decreasing character spacing by 1 point
and/or
Increasing/Decreasing line spacing by 1 point




  #6  
Old June 8th, 2004, 09:52 PM
JethroUK©
external usenet poster
 
Posts: n/a
Default Anyone know Keyboard Shortcuts?

thanx for all suggestions - think i'll have to stick to the long way round
(


"Stephen Glynn" wrote in message
...
Or you could create some new styles and assign keyboard shortcuts to them.

Steve

AA wrote:

What about Condensed: (under All Commands)?

and then you get to pick by how many points




Word does not have built-in commands or keystrokes for either of those.

You
would need to write macros, then assign them to the desired keystrokes.



Is there a keyboard short for:

Increasing/Decreasing character spacing by 1 point
and/or
Increasing/Decreasing line spacing by 1 point







  #7  
Old June 8th, 2004, 11:56 PM
Dayo Mitchell
external usenet poster
 
Posts: n/a
Default Anyone know Keyboard Shortcuts?

These links will help if you are not familiar with macros:

Creating a macro with no programming experience using the recorder
http://word.mvps.org/faqs/macrosvba/UsingRecorder.htm

How to assign a Word command or macro to a toolbar or menu
http://word.mvps.org/faqs/customizat...oToToolbar.htm

DM


"JethroUK©" wrote:

thanx for all suggestions - think i'll have to stick to the long way round
(


"Stephen Glynn" wrote in message
...
Or you could create some new styles and assign keyboard shortcuts to them.

Steve

AA wrote:

What about Condensed: (under All Commands)?

and then you get to pick by how many points




Word does not have built-in commands or keystrokes for either of those.

You
would need to write macros, then assign them to the desired keystrokes.



Is there a keyboard short for:

Increasing/Decreasing character spacing by 1 point
and/or
Increasing/Decreasing line spacing by 1 point








  #8  
Old July 11th, 2004, 04:05 PM
Larry
external usenet poster
 
Posts: n/a
Default Anyone know Keyboard Shortcuts?

If you want to increase/decrease the character spacing of the selected
text by one point, these two macros will do that, without your having to
to into the Font dialog box. Just install these macros and assign
keystrokes to them.

Sub SpacingIncrease()
X = Selection.Font.Spacing
Selection.Font.Spacing = X + 1
End Sub

Sub SpacingDecrease()
X = Selection.Font.Spacing
Selection.Font.Spacing = X - 1
End Sub

Larry



"JethroUK©" wrote in message
news:ZINwc.720$L64.371@newsfe3-gui...
Is there a keyboard short for:

Increasing/Decreasing character spacing by 1 point
and/or
Increasing/Decreasing line spacing by 1 point




  #9  
Old July 13th, 2004, 11:51 AM
Helen Tasky
external usenet poster
 
Posts: n/a
Default Anyone know Keyboard Shortcuts?

Ctl + ] or [

"Larry" wrote in message
...
If you want to increase/decrease the character spacing of the selected
text by one point, these two macros will do that, without your having to
to into the Font dialog box. Just install these macros and assign
keystrokes to them.

Sub SpacingIncrease()
X = Selection.Font.Spacing
Selection.Font.Spacing = X + 1
End Sub

Sub SpacingDecrease()
X = Selection.Font.Spacing
Selection.Font.Spacing = X - 1
End Sub

Larry



"JethroUK©" wrote in message
news:ZINwc.720$L64.371@newsfe3-gui...
Is there a keyboard short for:

Increasing/Decreasing character spacing by 1 point
and/or
Increasing/Decreasing line spacing by 1 point






  #10  
Old July 13th, 2004, 12:00 PM
garfield-n-odie
external usenet poster
 
Posts: n/a
Default Anyone know Keyboard Shortcuts?

Hi, Helen. Ctrl+] and Ctrl+[ respectively increase and decrease the
font size, not the character spacing.


Helen Tasky wrote:

Ctl + ] or [

"Larry" wrote in message
...

If you want to increase/decrease the character spacing of the selected
text by one point, these two macros will do that, without your having to
to into the Font dialog box. Just install these macros and assign
keystrokes to them.

Sub SpacingIncrease()
X = Selection.Font.Spacing
Selection.Font.Spacing = X + 1
End Sub

Sub SpacingDecrease()
X = Selection.Font.Spacing
Selection.Font.Spacing = X - 1
End Sub

Larry



"JethroUK©" wrote in message
news:ZINwc.720$L64.371@newsfe3-gui...

Is there a keyboard short for:

Increasing/Decreasing character spacing by 1 point
and/or
Increasing/Decreasing line spacing by 1 point







 




Thread Tools
Display Modes

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

vB code is On
Smilies are On
[IMG] code is Off
HTML code is Off
Forum Jump


All times are GMT +1. The time now is 12:10 AM.


Powered by vBulletin® Version 3.6.4
Copyright ©2000 - 2024, Jelsoft Enterprises Ltd.
Copyright ©2004-2024 OfficeFrustration.
The comments are property of their posters.