views:

86

answers:

1

I have an sample application that do basic dictation with sapi 5.3.
It works well to input text with punctuation...
What would I need to do to enable the correction functionality as in the tutorial (correct word, select ...)?
Is there a specific grammar to load (which and how), some specific events to implement?

+1  A: 

Well, if you just want the grammar, you can use a ruleref to get the dictation grammar:

<ruleref uri="sharing:Microsoft.SpeechUX.BuiltIn.LaunchCommands"/>

Note that you'll still be responsible for parsing the rule and performing the actions.

Eric Brown
Oops. That should be<ruleref uri="sharing:Microsoft.SpeechUX.BuiltIn.DictationCommands"/>LaunchCommands gets you the list of applications you can launch. D'Oh!
Eric Brown