An AudioString object represents a string of characters to be spoken individually. The style property inherited from the superclass MediaType has only one value. This default style is to speak the characters one by one. Blanks can be included in the string but are ignored. Uppercase and lowercase characters are spoken in exactly the same way. You can specify any characters, but there must be a voice segment on the Blueworx Voice Response server, in the System category, for each one. The name of the voice segment must be the character (for example, the name of the "ampersand" segment must be "&").
public class InApp extends WVRApplication { // Create an audio string public AudioString letters = new AudioString("ABCD"); . . . }