About the TypeText command

Hi,
How can I use the TypeText command to input double quotation marks in the string.eg,Input the string like: a = “yellow”
Thanks

use the quote command between and out side of what you want to quote. For example.

quote “Yellow” quote

This can be found on page 330 of the SenseTalk Reference manual.

~Charles

Thanks, Charles. That’s an excellent answer! Just for completeness, I’d mention that another way to do it is by using either the double-angle-bracket << >> or double-curly-brace {{ }} type of quotes, like this:

put <<"Yellow">>
-- or --
put {{
"Yellow"
}}

These are described in Chapter 3 of the SenseTalk Reference (on p. 37 & 38 in the current version).