Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
address ISPEXEC
"TBVCLEAR" $tn$ /* clear all variables */
name = "SMITH" /* All SMITHs */
state = "CO" /* living in Colorado */
do forever
/* find upscale addresses :-) */
"TBSCAN" $tn$
if rc > 0 then leave
if Pos("Blvd",straddr) > 0 then say,
name straddr city state zip
end