Hi Daniel,
Useful to know, I might try that for some templates. I hadn't realised
that a macro could be created at that level.
Yeah, it's pretty easy, for those times you don't want to use Normal. The
help that comes up for record a macro and assign it to toolbar/shortcut key
is decent, I think, or ask if you run into problems.
Macros can be created at most any level, by the way--anytime you find
yourself doing something over and over again, chances are that there's a
predefined command in Tools | Customize that you can set up for easy access,
or that a macro can make it run smoother.
I have run into some kind of an oddity. My standard document is (Normal
template) with a large window and zoomed in for easy reading. This
isually works fine, but at times I have had a much smaller window
appear. I need to see if I can work out what triggers this, and then I
might ask about how to prevent it. I can't ask this question as yet,
because I don't have ahanfle on when it happens. It *may* occur on the
first launch of Word after a restart, but I'm not entirely sure.
Yeah....this one is a bit tricky.
Documents open in the view in which they were last saved. So if you are
getting documents from other people, they tend to show up in their preferred
view, not yours. That's the most common cause of screwiness.
The new blank document technically opens in the view that is saved in the
Normal template, but there must also be some code somewhere that tells Word
to open in the view that was last being used--which is sometimes the
preferred view of someone who sent you a document. So Word tends to get a
little confused here, and not be consistent.
It *is* possible to force Word to open documents a certain way with
macros--an AutoNew macro runs on every new document, and an AutoOpen macro
runs on every document that is opened, and you can make sure all sorts of
things happen with these. I get a lot of Page Layout view documents from
students that contaminate my preferred Normal view in 125% zoom, so I
installed these two macros--whether something similar is worth the trouble
for you probably depends on how often yours goes wiggy.
Sub AutoNew()
With ActiveWindow.View
.Type = wdNormalView
.Zoom.Percentage = 125
.TableGridlines = True
End With
End Sub
Sub AutoOpen()
With ActiveWindow.View
.Type = wdNormalView
.Zoom.Percentage = 125
.TableGridlines = True
End With
End Sub
How to Install (use the names given here):
http://word.mvps.org/Mac/InstallMacro.html