IF TEST = 1 { ASSIGN TextToSpeech = "John Doe" ASSIGN VarWithCommas = "one,two,three,four" } //Returns a character from the ASCII code value. This allows a script //the ability TO programmatically add special characters TO a string – //such as carriage returns and tabs. //Be cautious with this FUNCTION as char(0) through char(7) are reserved //FOR internal use and MAY cause scripts TO malfunction. ASSIGN Character1 = "{char(34)}" ASSIGN Character2 = "{char(44)}" ASSIGN Character3 = "{char(39)}" ASSIGN MarqueeMessage = "Marquee {char(13)} Message on {char(13)} different lines." ASSIGN PromptListWithDoubleQuotes = "{char(34)}Prompts\File with space.wav{char(34)} {char(34)}{TextToSpeech}{char(34)}" ASSIGN VarWithReplacedCommas = "{VarWithCommas.replace(char(44),' ')}"