So I am thinking I need to make a function with the
spSpeak.speak
and
WMP.Settings.Mute = true

Code:
Private Function funSpeak()
dim speak as ?
WMP.Settings.Mute = true
spSpeak.Speak
WMP.Settings.Mute = False
End Function
Then everywhere in my code I have spSpeak.Speak "speak this"
I would just call the function

Speak() "Speak This? "


You think I am on correct track here?