macro for outline headings

  • Thread starter Thread starter feagin
  • Start date Start date
F

feagin

Is there a way to create a simple keyboard macro for each
heading level? I tried by recording keys and it does not
work.?
 
thanks for the useful info. Great.

Is there a list somewhere of all the key shortcuts? I see
the list in the customize/keyboard/all commands box, but
they all are apparently not there

can you set a zoom at 120 percent and tie it to a shortcut
key?
 
Hi Joe and Mark

You can assign keyboard shortcuts directly to any style - no need for a
macro.
 
Note also that you can use Alt+Shift+LeftArrow to promote Body Text to the
most recently used heading level and Alt+Shift+Left/Right Arrow to promote
and demote headings generally.

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

You can run the ListCommands command (no, I'm not stuttering)
by opening the Macros dialog (ALT+F8), choosing Word Commands
in the 'Macros In' box, and scrolling to ListCommands in the
macro list. This produces a profoundly space-wasting table
which nevertheless does show all the shortcuts.

Of course, a true Word geek makes his own damn shortcuts to
suit his specific preferences, and does it so thoroughly that
he often retains no recollection at all of the original hotkey
assignments, ahem.

You can set a zoom at any percentage, but to tie it to a
shortcut you'd have to put it in a little macro:

Sub ZoomTo120
ActiveWindow.ActivePane.View.Zoom.Percentage = 120
End Sub
 
Back
Top