Re: Sound when saving does not stick
- From: Daiya Mitchell <daiyaNOSPAM@xxxxxxxxxxxxxxxx>
- Date: Sat, 05 Nov 2005 11:51:42 -0800
On 11/4/05 8:10 PM, "nlee0223@xxxxxxxxx" wrote:
> Word 11.2
>
> The preferences for "Provide Feedback with Sound" continuously unchecks
> itself often. I have to check it all the time. Anyone encounter this? I
> use this to hear the sound while saving.
>
> Any fix? It seem to have gotten worst in this latest upgrade.
>
> I'm using OS X 10.4.3 but it was happening in 10.4.2.
>
You can create an AutoExec macro to automatically check the "provide
feedback with sound" setting. An AutoExec macro in a global template will
run every time you launch Word.
I *think* (I'm a macro novice) that this is the macro you need:
Sub AutoExec()
With Options
.EnableSound = True
End With
End Sub
You can install it in the Normal template--here's directions for that. You
don't need to assign it to a toolbar or anything as it will automatically
run on launch.
http://word.mvps.org/MacWordNew/InstallMacroMac.htm
(hit refresh a few times in Safari, or use a different browser)
It would actually be preferable to put it in a global template, however:
http://www.mcgimpsey.com/macoffice/word/globaltemplate.html
(only the first portion re template is required for this instance)
If there are other preferences you want to make sure are always checked, you
can stack them into the same AutoExec macro--this is mine, just as an
example:
Sub AutoExec()
With AutoCorrect
.ReplaceTextFromSpellingChecker = False
End With
With ActiveWindow.View
.ShowBookmarks = True
End With
End Sub
(Michel, I know nothing re PPT but suspect something similar would work in
PPT, but your problem actually sounds a little different)
--
Daiya Mitchell, MVP Mac/Word
Word FAQ: http://www.word.mvps.org/
MacWord Tips: <http://www.word.mvps.org/MacWordNew/>
What's an MVP? A volunteer! Read the FAQ: http://mvp.support.microsoft.com/
.
- References:
- Sound when saving does not stick
- From: nlee0223
- Sound when saving does not stick
- Prev by Date: Re: Line spacing nightmares
- Next by Date: Re: unable to insert symbol with latest version of Office
- Previous by thread: Re: Sound when saving does not stick
- Next by thread: Re: Sound when saving does not stick
- Index(es):
Relevant Pages
|