<option>

<option>

An option list is represented by a set of <option> elements contained in a <field> element. Each <option> element contains PCDATA that is used to generate a speech grammar.

Attributes

Notes

None

Example

<?xml version="1.0"?>
<vxml version="2.0">
  <form>
    <field name="maincourse">
      <prompt>
        Please select an entree.
      <enumerate>
        For <value expr="_prompt"/>, press <value expr="_dtmf"/> or say <value expr="_prompt"/>.
      </enumerate>
      </prompt>
      <option value="fish" dtmf="1"> swordfish steak </option>
      <option value="beef" dtmf="2"> roast beef </option>
      <option value="chicken" dtmf="3"> frog legs </option>
      <filled>
        You chose <value expr="maincourse"/>.
      </filled>
    </field>
  </form>
</vxml>

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. For frog legs, press 3 or say frog legs. Human: <user enters: 1> Computer: You chose fish.

Child Tags

None

Parent Tags

<field>

Last updated