<choice>
<choice>
The <choice> element serves several purposes:
It specifies a speech and/or dtmf grammar fragment that determines when that choice has been selected.
The contents are used to form the prompt string.
It specifies the URI to go to when the choice is selected.
Attributes
Name | Data type | Description |
---|---|---|
fetchaudio | String | The URI of the audio clip to play while the fetch is being done. If not specified, the fetchaudio property is used, and if that property is not set, no audio is played during the fetch. The fetching of the audio clip is governed by the audiofetchhint, audiomaxage, audiomaxstale, and fetchtimeout properties in effect at the time of the fetch. The playing of the audio clip is governed by the fetchaudiodelay, and fetchaudiominimum properties in effect at the time of the fetch. |
fetchhint | This attribute is not supported. | |
fetchtimeout | String | (defaults to “fetchtimeout” global property value) The timeout for fetches. Must be specified with the appropriate time units (e.g., “120s” for 120 seconds). |
maxage | String | (defaults to “documentmaxage” global property value) Tells the platform the maximum acceptable age, in seconds, of cached documents. |
maxstale | String | (defaults to “documentmaxstale” global property value) Tells the platform the maximum acceptable staleness, in seconds, of expired cached documents. |
accept | String | (defaults to “exact”) Override the setting for accept in <menu> for this particular choice. When set to “exact”, the text of the choice element defines the exact phrase to be recognized. When set to “approximate”, the text of the choice element defines an approximate recognition phrase. |
dtmf | String | The DTMF sequence for this choice. It is equivalent to a simple DTMF <grammar>, and DTMF properties apply to recognition of the sequence. |
event | String | Specify an event to be thrown instead of specifying a next. |
eventexpr | String | An ECMAScript expression evaluating to the name of the event to be thrown. |
message | String | A message string providing additional context about the event being thrown. The message is available as the value of the variable “_message” within the scope of the catch element. |
messageexpr | String | An ECMAScript expression evaluating to the message string. |
next | String | The URI of the next dialog or document. |
expr | String | Specify an expression to evaluate as a URI to transition to instead of specifying a next. |
Notes
Exactly one of “next”, “expr”, “event”, and “eventexpr” must be specified. Exactly one of “message” and “messageexpr” may be specified.
Example
The output of the above script would be:
Computer: Please select an entree. For swordfish steak, press 1 or say swordfish steak. For roast beef, press 2 or say roast beef. Human: Roast beef. Computer: You chose roast beef. Press 1 or say dessert to hear what's for dessert. Human: Dessert. Computer: The dessert today is chocolate pie.
Child Tags
Parent Tags
Last updated