You can use the mouse on menu/toolbar items.
Main Topics
Browse All TopicsIn word I click on tools->macros->record new macro. After it starts recording I see a little image (I assume it's a tape), but I can't seem to do anything that can be recorded. I want to select some text and change the font, but when I try to use the mouse to select text nothing happens. I know i've recorded macros before. What could be wrong?
This Question has been solved and asker verified All Experts Exchange premium technology solutions are available to subscription members.
Experts Exchange has been collecting answers to technology questions since 1996…3 million and counting! If you have a question, chances are we already have your answer.
If you can't find the exact answer you're looking for, ask our exclusive community of 50,000 experts. You’ll get a personalized answer from a trusted professional.
Thousands of free tech tips, tricks, how-to’s and tutorials are available in our peer reviewed articles section. See for yourself how smart our experts are, no login required.
Access the answers to your technology questions today.
30-day free trial. Register in 60 seconds.
Members of the expert community talk about why the experience at Experts Exchange is different than what you will find anywhere else.

Try it out and discover for yourself.
30-day free trial. Register in 60 seconds.
Join the community of experts here and help other tech pros by answering question in your area of expertise. You can earn FREE access to all Experts Exchange's premium features and resources.
I've just recorded this macro.
The font was changed via Format/Font and the Indent via Format/Paragraph.
As you will see, all the properties on the dialogue are listed, so I don't know how you managed to lose some.
Sub Macro17()
'
' Macro17 Macro
' Macro recorded 22/11/2004 by Graham Skan
'
Selection.MoveUp Unit:=wdLine, Count:=7
Selection.MoveDown Unit:=wdLine, Count:=2, Extend:=wdExtend
With Selection.Font
.Name = "Garamond"
.Size = 20
.Bold = True
.Italic = False
.Underline = wdUnderlineSingle
.UnderlineColor = wdColorAutomatic
.StrikeThrough = False
.DoubleStrikeThrough = False
.Outline = False
.Emboss = False
.Shadow = False
.Hidden = False
.SmallCaps = False
.AllCaps = False
.Color = wdColorAutomatic
.Engrave = False
.Superscript = False
.Subscript = False
.Spacing = 0
.Scaling = 100
.Position = 0
.Kerning = 0
.Animation = wdAnimationNone
End With
With Selection.ParagraphFormat
.LeftIndent = CentimetersToPoints(0)
.RightIndent = CentimetersToPoints(0)
.SpaceBefore = 0
.SpaceBeforeAuto = False
.SpaceAfter = 0
.SpaceAfterAuto = False
.LineSpacingRule = wdLineSpaceSingle
.Alignment = wdAlignParagraphLeft
.WidowControl = True
.KeepWithNext = False
.KeepTogether = False
.PageBreakBefore = False
.NoLineNumber = False
.Hyphenation = True
.FirstLineIndent = CentimetersToPoints(0)
.OutlineLevel = wdOutlineLevelBodyText
.CharacterUnitLeftIndent = 0
.CharacterUnitRightIndent = 0
.CharacterUnitFirstLineInd
.LineUnitBefore = 0
.LineUnitAfter = 0
End With
End Sub
Business Accounts
Answer for Membership
by: GrahamSkanPosted on 2004-11-21 at 11:39:22ID: 12639595
You can't use the mouse on the document when recording. You have to use keystrokes.