Navigating Picker items with your voice

The Picker item type now supports navigating items with your voice by speaking the label names.

Speaking TOUCH AND GO or GOTO TOUCH AND GO will navigate to the link for the Touch and Go item.

Note: You must have Linking setup properly for the items.

You can also add any number of alternates. You can add alternates by putting a JSON object in the Properties of a Picker item. There are two ways you can add alternates.

You can add alternates by putting a pipe symbol between each item:

{
   "vocabAlternates: "Alternate One | Alternate Two"
}

Or you can add alternates by uisng a javascript array of strings:

{
   "vocabAlternates": ["Alternate 1", "Alternate 2"]
}