Hello Jamal, Regarding the toggle punctuation script I would like to make a suggestion. Since you have only the option to toggle it off or on, but I'm using many times the dictionary only mode, I made a small enhancement to the script to toggle between off, on, and dictionary only mode. Maybe it would be a good idea to include it in your code. Please see code below:
Select Case sCommand Case "Toggle Punctuation" Set oPunctuation = ActiveSettings.Screen.Punctuation If oPunctuation.Textual = pmOff Or oPunctuation.Math = pmOff Or oPunctuation.Miscellaneous = pmOff Then Speak "punctuation on" iState = pmOn Else If oPunctuation.Textual = pmDictionaryOnly Or oPunctuation.Math = pmDictionaryOnly Or oPunctuation.Miscellaneous = pmDictionaryOnly Then Speak "punctuation Off" iState = pmOff Else Speak "punctuation Dictionary Only" iState = pmDictionaryOnly End If End If Cheers, Ralf Ralf Kefferpuetz Germany Phone.: +49 6082-929415 Mobile: +49 171 950 4326 Skype and Yahoo Messenger: rkefferpuetz7747
