MuteSpeech

Purpose

This function temporarily mutes the speech output.  By setting this property to FALSE, all speech output is silenced until this property is set back to TRUE.  This mutes ALL speech, including speech generated from scripts.

This is a read/write property.

Parameters

Parameter: mode
Type: boolean
Description: Use TRUE to have speech output silenced and FALSE to have it enabled.

Returns

None.

Example

' stop all speech output

sub main()

hs.MuteSpeech = TRUE

end sub

 

' enable all speech output

sub main()

hs.MuteSpeech = FALSE

end sub