Talking Web Clients with JavaScript and the Speech API California

See how to make your web clients read or play content to its users. You will experiment with JavaScript from the command line, learn a JavaScript debugging technique that might be useful, and see how to load the Speech API and ask it to read the ALT (text) attribute of HTML controls.

Local Companies

Solix Technologies
408.328.6456
685 West Maude Ave
Sunnyvale, , CA
Pacific Design Studios
(619) 235-8400
2630 First Ave Suite 209
San Diego, CA
Personal Assistant - LuluWest
510 236-0936
2163 Meeker Ave
Richmond, CA
Axmor Software
1 877 772 9667
299 Stage Road
Pescadero, CA
ADM Systems
(323) 646-1317
17375 Brookhurst Street
Fountain Valley, CA
cellphoneonly.com
310-257-9043
1801 W. Lomita Bl.
Lomita, CA
Ceeyes Systems, Inc.
408-294-3258
1310 Tully Road
San Jose, CA
Digital Fuel
650-524-2520
951 Mariner's Island Boulevard
San Mateo, CA
MARAUDER CORPORATION
760-423-1111
74-923 HWY 111
Indian Wells, CA
Zoomerang
800-316-0662
1 Belvedere Place
Mill Valley, CA

Talking Web Clients with JavaScript and the Speech API

provided by: 
Originally published at Internet.com


Introduction

I was surfing the web and saw the announcement of Microsoft Surface. Surface right now is a tabletop Windows Vista machine with cameras pointing out, no keyboard, and no mouse. Interactions are done with the surface of the device. Combined with the cameras and Bluetooth capabilities, Surface interacts with objects in the real world. For example, lay an enabled cell phone on the device and Surface downloads your pictures or possibly synchronizes your phone contacts with your Outlook contacts. I can't do the device justice here; it's one of those things you will have to see to believe (www.microsoft.com/surface). It's worth seeing.

I was so intrigued with a device that interacts naturally with the physical world that I became interested in the day-to-day possibilities of a more natural interaction with computing devices (as well as interested in writing a book about Surface. Hint: Microsoft, send me a Surface machine, for research purposes of course). Consequently, this article is an off-shoot of that interest.

This article demonstrates how to make your web clients read some or play some of the text content to the users. I am aware of accessibility tags and HTML, but as a programmer how could capabilities like audio-text be used for routine development purposes: first, making debug and trace information audible, and permitting everyday end-users to hear content. And, I will admit it's fun too. In this article, you will get to experiment with JavaScript from the command line, learn a JavaScript debugging technique that might be useful, and how to load the Speech API and ask it to read the ALT (text) attribute of HTML controls.

Even if you aren't that interested in new computing techniques or speech, you will find the JavaScript techniques helpful.

Running JavaScript from the Command Line

JavaScript can be used for more than snappy web clients and as part of the plumbing that makes Ajax work. (And, Ajax is a very cool capability of web programming.) JavaScript can be run from the command line to perform routine tasks.

If you create a .js file and click in Explorer or type the file name from the command line (cmd.exe), the Windows Scripting Host (WScript.exe) will run the JavaScript like a program. Try this example: 1. Open Explorer. 2. Create a new text file and name it Hello.js. 3. Type: WScript.Echo("Microsoft Surface is cool!"). 4. Save the file and double-click it in Explorer.

The WScript host will execute the script and display a standard message box containing the text. Listing 1 demonstrates JavaScript that will create a desktop URL shortcut (to Microsoft's Popfly—Code mashup tool). (Figure 1 shows a Mashup sample I created on Popfly, which is based on Microsoft's Silverlight technology.)

Listing 1: JavaScript that creates a desktop shortcut to Microsoft's Popfly. var shell = WScript.CreateObject("WScript.Shell"); var desktop = shell.SpecialFolders("Desktop"); var url = shell.CreateShortcut(desktop + "\\Popfly.url"); url.TargetPath = "http://www.popfly.ms"; url.Save(); WScript.Echo("Shortcut added to Popfly");



Click here for a larger image.

Figure 1: My FlickringVirtualEarth Mashup that shows the location of pictures from Flickr on VirtualEarth.

Adding Speech to a Web Client

You can use the Speech API with just a few lines of code. You will need to create an ActiveXObject passing the name of the Speech API component, SAPI.SpVoice. (You can download the Speech API for free, if it's not installed on your computer already. Check oout http://msdn2.microsoft.com/en-us/library/ms723627.aspx.) Next, you can pick a voice, and optionally set the speech rate and volume. Finally, send the text you'd like to be spoken (see Listing 2). Note: Other browsers may not support ActiveX objects, but this technique works great on the most popular browser, IE.

Listing 2 The bare bones code it takes to read some hard coded text. var voice = new ActiveXObject("SAPI.SpVoice"); voice.Speak("Microsoft Surface is cool!");

You can select from available voices and modulate the rate and volume with code like that shown in Listing 3. The rate can be from 1—slow—to 10—very fast; the volume can be from 0 to 100, which is the loudest; and the voice selected has to be an installed voice.

Listing 3: Speech script that sets the rate of speech, volume, and picks from an available voice. var voices = voice.GetVoices(); v ar len = voices.count; WScript.Echo("Length: " + len ); WScript.Echo("Voice: " + voices(1).GetDescription() ); if(len >= 2) voice.Voice = voices(1); voice.Rate = 1; voice.Volume = 75; voice.Speak("Microsoft PopFly is cool too!");

The code above gets the array of available voices. The number is retrieved and displayed and a description of voice at index 1 is displayed. On my machine, I have three voices and the voice at index 1 is LH Michelle. The speech rate is set to 1 (slow) and the volume is set to about ¾'s of the maximum volume.

Listing 4 combines the elements you have seen so far with some new features. I have introduced the debugger keyword that causes the debugger to break precisely at that line, making it easier to target specific code for debugging. I have also introduced a try..catch block and some cleanup code (see Listing 4).



Click here for a larger image.

Figure 2: By adding a debugger statement to your code, you will be prompted to select a debugger (usually Visual Studio or Microsoft Script Editor (shown)) and execution will be suspended at the debugger statement.

Listing 4: Speech capability bound to the onclick event of an control. (The numbering is for reference only.) 1: 2: 3: Talking Page 4: 34: 37: 38: 39: 40:

41: Paul's Number is (555) 555-1212 extension 3333

Author: Paul Kimmel

Read article at Internet.com site

Featured Local Company

ThoughtFocus

866-831-4284
21161 Foxtail
Mission Viejo, CA
www.thoughtfocus.com

Regional Articles
- Talking Web Clients with JavaScript and the Speech API Adelanto CA
- Talking Web Clients with JavaScript and the Speech API Agoura Hills CA
- Talking Web Clients with JavaScript and the Speech API Alameda CA
- Talking Web Clients with JavaScript and the Speech API Alhambra CA
- Talking Web Clients with JavaScript and the Speech API Aliso Viejo CA
- Talking Web Clients with JavaScript and the Speech API Alpine CA
- Talking Web Clients with JavaScript and the Speech API Altadena CA
- Talking Web Clients with JavaScript and the Speech API Anaheim CA
- Talking Web Clients with JavaScript and the Speech API Antelope CA
- Talking Web Clients with JavaScript and the Speech API Antioch CA
- Talking Web Clients with JavaScript and the Speech API Apple Valley CA
- Talking Web Clients with JavaScript and the Speech API Aptos CA
- Talking Web Clients with JavaScript and the Speech API Arcadia CA
- Talking Web Clients with JavaScript and the Speech API Arcata CA
- Talking Web Clients with JavaScript and the Speech API Arroyo Grande CA
- Talking Web Clients with JavaScript and the Speech API Arvin CA
- Talking Web Clients with JavaScript and the Speech API Atascadero CA
- Talking Web Clients with JavaScript and the Speech API Atwater CA
- Talking Web Clients with JavaScript and the Speech API Auburn CA
- Talking Web Clients with JavaScript and the Speech API Avenal CA
- Talking Web Clients with JavaScript and the Speech API Azusa CA
- Talking Web Clients with JavaScript and the Speech API Bakersfield CA
- Talking Web Clients with JavaScript and the Speech API Baldwin Park CA
- Talking Web Clients with JavaScript and the Speech API Banning CA
- Talking Web Clients with JavaScript and the Speech API Barstow CA
- Talking Web Clients with JavaScript and the Speech API Bell CA
- Talking Web Clients with JavaScript and the Speech API Bellflower CA
- Talking Web Clients with JavaScript and the Speech API Belmont CA
- Talking Web Clients with JavaScript and the Speech API Benicia CA
- Talking Web Clients with JavaScript and the Speech API Berkeley CA
- Talking Web Clients with JavaScript and the Speech API Beverly Hills CA
- Talking Web Clients with JavaScript and the Speech API Bloomington CA
- Talking Web Clients with JavaScript and the Speech API Blythe CA
- Talking Web Clients with JavaScript and the Speech API Bonita CA
- Talking Web Clients with JavaScript and the Speech API Brawley CA
- Talking Web Clients with JavaScript and the Speech API Brea CA
- Talking Web Clients with JavaScript and the Speech API Brentwood CA
- Talking Web Clients with JavaScript and the Speech API Buena Park CA
- Talking Web Clients with JavaScript and the Speech API Burbank CA
- Talking Web Clients with JavaScript and the Speech API Burlingame CA
- Talking Web Clients with JavaScript and the Speech API Calabasas CA
- Talking Web Clients with JavaScript and the Speech API Calexico CA
- Talking Web Clients with JavaScript and the Speech API Camarillo CA
- Talking Web Clients with JavaScript and the Speech API Campbell CA
- Talking Web Clients with JavaScript and the Speech API Canoga Park CA
- Talking Web Clients with JavaScript and the Speech API Canyon Country CA
- Talking Web Clients with JavaScript and the Speech API Carlsbad CA
- Talking Web Clients with JavaScript and the Speech API Carmichael CA
- Talking Web Clients with JavaScript and the Speech API Carpinteria CA
- Talking Web Clients with JavaScript and the Speech API Carson CA
- Talking Web Clients with JavaScript and the Speech API Castaic CA
- Talking Web Clients with JavaScript and the Speech API Castro Valley CA
- Talking Web Clients with JavaScript and the Speech API Cathedral City CA
- Talking Web Clients with JavaScript and the Speech API Ceres CA
- Talking Web Clients with JavaScript and the Speech API Cerritos CA
- Talking Web Clients with JavaScript and the Speech API Chatsworth CA
- Talking Web Clients with JavaScript and the Speech API Chico CA
- Talking Web Clients with JavaScript and the Speech API Chino CA
- Talking Web Clients with JavaScript and the Speech API Chino Hills CA
- Talking Web Clients with JavaScript and the Speech API Chowchilla CA
- Talking Web Clients with JavaScript and the Speech API Chula Vista CA
- Talking Web Clients with JavaScript and the Speech API Citrus Heights CA
- Talking Web Clients with JavaScript and the Speech API Claremont CA
- Talking Web Clients with JavaScript and the Speech API Clovis CA
- Talking Web Clients with JavaScript and the Speech API Coachella CA
- Talking Web Clients with JavaScript and the Speech API Coalinga CA
- Talking Web Clients with JavaScript and the Speech API Colton CA
- Talking Web Clients with JavaScript and the Speech API Compton CA
- Talking Web Clients with JavaScript and the Speech API Concord CA
- Talking Web Clients with JavaScript and the Speech API Corcoran CA
- Talking Web Clients with JavaScript and the Speech API Corona CA
- Talking Web Clients with JavaScript and the Speech API Coronado CA
- Talking Web Clients with JavaScript and the Speech API Costa Mesa CA
- Talking Web Clients with JavaScript and the Speech API Covina CA
- Talking Web Clients with JavaScript and the Speech API Crescent City CA
- Talking Web Clients with JavaScript and the Speech API Culver City CA
- Talking Web Clients with JavaScript and the Speech API Cupertino CA
- Talking Web Clients with JavaScript and the Speech API Cypress CA
- Talking Web Clients with JavaScript and the Speech API Daly City CA
- Talking Web Clients with JavaScript and the Speech API Dana Point CA
- Talking Web Clients with JavaScript and the Speech API Danville CA
- Talking Web Clients with JavaScript and the Speech API Davis CA
- Talking Web Clients with JavaScript and the Speech API Delano CA
- Talking Web Clients with JavaScript and the Speech API Desert Hot Springs CA
- Talking Web Clients with JavaScript and the Speech API Diamond Bar CA
- Talking Web Clients with JavaScript and the Speech API Dinuba CA
- Talking Web Clients with JavaScript and the Speech API Downey CA
- Talking Web Clients with JavaScript and the Speech API Duarte CA
- Talking Web Clients with JavaScript and the Speech API Dublin CA
- Talking Web Clients with JavaScript and the Speech API El Cajon CA
- Talking Web Clients with JavaScript and the Speech API El Centro CA
- Talking Web Clients with JavaScript and the Speech API El Cerrito CA
- Talking Web Clients with JavaScript and the Speech API El Dorado Hills CA
- Talking Web Clients with JavaScript and the Speech API El Monte CA
- Talking Web Clients with JavaScript and the Speech API El Segundo CA
- Talking Web Clients with JavaScript and the Speech API El Sobrante CA
- Talking Web Clients with JavaScript and the Speech API Elk Grove CA
- Talking Web Clients with JavaScript and the Speech API Emeryville CA
- Talking Web Clients with JavaScript and the Speech API Encinitas CA
- Talking Web Clients with JavaScript and the Speech API Encino CA
- Talking Web Clients with JavaScript and the Speech API Escondido CA
- Talking Web Clients with JavaScript and the Speech API Eureka CA
- Talking Web Clients with JavaScript and the Speech API Fair Oaks CA
- Talking Web Clients with JavaScript and the Speech API Fairfield CA
- Talking Web Clients with JavaScript and the Speech API Fallbrook CA
- Talking Web Clients with JavaScript and the Speech API Fillmore CA
- Talking Web Clients with JavaScript and the Speech API Folsom CA
- Talking Web Clients with JavaScript and the Speech API Fontana CA
- Talking Web Clients with JavaScript and the Speech API Fountain Valley CA
- Talking Web Clients with JavaScript and the Speech API Fremont CA
- Talking Web Clients with JavaScript and the Speech API Fresno CA
- Talking Web Clients with JavaScript and the Speech API Fullerton CA
- Talking Web Clients with JavaScript and the Speech API Galt CA
- Talking Web Clients with JavaScript and the Speech API Garden Grove CA
- Talking Web Clients with JavaScript and the Speech API Gardena CA
- Talking Web Clients with JavaScript and the Speech API Gilroy CA
- Talking Web Clients with JavaScript and the Speech API Glendale CA
- Talking Web Clients with JavaScript and the Speech API Glendora CA
- Talking Web Clients with JavaScript and the Speech API Goleta CA
- Talking Web Clients with JavaScript and the Speech API Granada Hills CA
- Talking Web Clients with JavaScript and the Speech API Granite Bay CA
- Talking Web Clients with JavaScript and the Speech API Grass Valley CA
- Talking Web Clients with JavaScript and the Speech API Hacienda Heights CA
- Talking Web Clients with JavaScript and the Speech API Half Moon Bay CA
- Talking Web Clients with JavaScript and the Speech API Hanford CA
- Talking Web Clients with JavaScript and the Speech API Harbor City CA
- Talking Web Clients with JavaScript and the Speech API Hawaiian Gardens CA
- Talking Web Clients with JavaScript and the Speech API Hawthorne CA
- Talking Web Clients with JavaScript and the Speech API Hayward CA
- Talking Web Clients with JavaScript and the Speech API Healdsburg CA
- Talking Web Clients with JavaScript and the Speech API Hemet CA
- Talking Web Clients with JavaScript and the Speech API Hercules CA
- Talking Web Clients with JavaScript and the Speech API Hermosa Beach CA
- Talking Web Clients with JavaScript and the Speech API Hesperia CA
- Talking Web Clients with JavaScript and the Speech API Highland CA
- Talking Web Clients with JavaScript and the Speech API Hollister CA
- Talking Web Clients with JavaScript and the Speech API Huntington Beach CA
- Talking Web Clients with JavaScript and the Speech API Huntington Park CA
- Talking Web Clients with JavaScript and the Speech API Imperial Beach CA
- Talking Web Clients with JavaScript and the Speech API Indio CA
- Talking Web Clients with JavaScript and the Speech API Inglewood CA
- Talking Web Clients with JavaScript and the Speech API Irvine CA
- Talking Web Clients with JavaScript and the Speech API King City CA
- Talking Web Clients with JavaScript and the Speech API La Canada Flintridge CA
- Talking Web Clients with JavaScript and the Speech API La Crescenta CA
- Talking Web Clients with JavaScript and the Speech API La Habra CA
- Talking Web Clients with JavaScript and the Speech API La Jolla CA
- Talking Web Clients with JavaScript and the Speech API La Mesa CA
- Talking Web Clients with JavaScript and the Speech API La Mirada CA
- Talking Web Clients with JavaScript and the Speech API La Palma CA
- Talking Web Clients with JavaScript and the Speech API La Puente CA
- Talking Web Clients with JavaScript and the Speech API La Quinta CA
- Talking Web Clients with JavaScript and the Speech API La Verne CA
- Talking Web Clients with JavaScript and the Speech API Laguna Beach CA
- Talking Web Clients with JavaScript and the Speech API Laguna Hills CA
- Talking Web Clients with JavaScript and the Speech API Laguna Niguel CA
- Talking Web Clients with JavaScript and the Speech API Lake Elsinore CA
- Talking Web Clients with JavaScript and the Speech API Lake Forest CA
- Talking Web Clients with JavaScript and the Speech API Lakeside CA
- Talking Web Clients with JavaScript and the Speech API Lakewood CA
- Talking Web Clients with JavaScript and the Speech API Lamont CA
- Talking Web Clients with JavaScript and the Speech API Lancaster CA
- Talking Web Clients with JavaScript and the Speech API Lawndale CA
- Talking Web Clients with JavaScript and the Speech API Lemon Grove CA
- Talking Web Clients with JavaScript and the Speech API Lemoore CA
- Talking Web Clients with JavaScript and the Speech API Livermore CA
- Talking Web Clients with JavaScript and the Speech API Lodi CA
- Talking Web Clients with JavaScript and the Speech API Loma Linda CA
- Talking Web Clients with JavaScript and the Speech API Lomita CA
- Talking Web Clients with JavaScript and the Speech API Lompoc CA
- Talking Web Clients with JavaScript and the Speech API Long Beach CA
- Talking Web Clients with JavaScript and the Speech API Los Alamitos CA
- Talking Web Clients with JavaScript and the Speech API Los Altos CA
- Talking Web Clients with JavaScript and the Speech API Los Angeles CA
- Talking Web Clients with JavaScript and the Speech API Los Banos CA
- Talking Web Clients with JavaScript and the Speech API Los Gatos CA
- Talking Web Clients with JavaScript and the Speech API Los Osos CA
- Talking Web Clients with JavaScript and the Speech API Lynwood CA
- Talking Web Clients with JavaScript and the Speech API Madera CA
- Talking Web Clients with JavaScript and the Speech API Malibu CA
- Talking Web Clients with JavaScript and the Speech API Manhattan Beach CA
- Talking Web Clients with JavaScript and the Speech API Manteca CA
- Talking Web Clients with JavaScript and the Speech API Marina CA
- Talking Web Clients with JavaScript and the Speech API Marina Del Rey CA
- Talking Web Clients with JavaScript and the Speech API Martinez CA
- Talking Web Clients with JavaScript and the Speech API Marysville CA
- Talking Web Clients with JavaScript and the Speech API Maywood CA
- Talking Web Clients with JavaScript and the Speech API Mckinleyville CA
- Talking Web Clients with JavaScript and the Speech API Menlo Park CA
- Talking Web Clients with JavaScript and the Speech API Merced CA
- Talking Web Clients with JavaScript and the Speech API Mill Valley CA
- Talking Web Clients with JavaScript and the Speech API Millbrae CA
- Talking Web Clients with JavaScript and the Speech API Milpitas CA
- Talking Web Clients with JavaScript and the Speech API Mira Loma CA
- Talking Web Clients with JavaScript and the Speech API Mission Hills CA
- Talking Web Clients with JavaScript and the Speech API Mission Viejo CA
- Talking Web Clients with JavaScript and the Speech API Modesto CA
- Talking Web Clients with JavaScript and the Speech API Monrovia CA
- Talking Web Clients with JavaScript and the Speech API Montclair CA
- Talking Web Clients with JavaScript and the Speech API Montebello CA
- Talking Web Clients with JavaScript and the Speech API Monterey CA
- Talking Web Clients with JavaScript and the Speech API Monterey Park CA
- Talking Web Clients with JavaScript and the Speech API Moorpark CA
- Talking Web Clients with JavaScript and the Speech API Moraga CA
- Talking Web Clients with JavaScript and the Speech API Moreno Valley CA
- Talking Web Clients with JavaScript and the Speech API Morgan Hill CA
- Talking Web Clients with JavaScript and the Speech API Mountain View CA
- Talking Web Clients with JavaScript and the Speech API Murrieta CA
- Talking Web Clients with JavaScript and the Speech API Napa CA
- Talking Web Clients with JavaScript and the Speech API National City CA
- Talking Web Clients with JavaScript and the Speech API Nevada City CA
- Talking Web Clients with JavaScript and the Speech API Newark CA
- Talking Web Clients with JavaScript and the Speech API Newbury Park CA
- Talking Web Clients with JavaScript and the Speech API Newhall CA
- Talking Web Clients with JavaScript and the Speech API Newport Beach CA
- Talking Web Clients with JavaScript and the Speech API Nipomo CA
- Talking Web Clients with JavaScript and the Speech API Norco CA
- Talking Web Clients with JavaScript and the Speech API North Highlands CA
- Talking Web Clients with JavaScript and the Speech API North Hills CA
- Talking Web Clients with JavaScript and the Speech API North Hollywood CA
- Talking Web Clients with JavaScript and the Speech API Northridge CA
- Talking Web Clients with JavaScript and the Speech API Norwalk CA
- Talking Web Clients with JavaScript and the Speech API Novato CA
- Talking Web Clients with JavaScript and the Speech API Oakdale CA
- Talking Web Clients with JavaScript and the Speech API Oakland CA
- Talking Web Clients with JavaScript and the Speech API Oakley CA
- Talking Web Clients with JavaScript and the Speech API Oceanside CA
- Talking Web Clients with JavaScript and the Speech API Ojai CA
- Talking Web Clients with JavaScript and the Speech API Ontario CA
- Talking Web Clients with JavaScript and the Speech API Orange CA
- Talking Web Clients with JavaScript and the Speech API Orangevale CA
- Talking Web Clients with JavaScript and the Speech API Orinda CA
- Talking Web Clients with JavaScript and the Speech API Oroville CA
- Talking Web Clients with JavaScript and the Speech API Oxnard CA
- Talking Web Clients with JavaScript and the Speech API Pacific Grove CA
- Talking Web Clients with JavaScript and the Speech API Pacific Palisades CA
- Talking Web Clients with JavaScript and the Speech API Pacifica CA
- Talking Web Clients with JavaScript and the Speech API Pacoima CA
- Talking Web Clients with JavaScript and the Speech API Palm Desert CA
- Talking Web Clients with JavaScript and the Speech API Palm Springs CA
- Talking Web Clients with JavaScript and the Speech API Palmdale CA
- Talking Web Clients with JavaScript and the Speech API Palo Alto CA
- Talking Web Clients with JavaScript and the Speech API Palos Verdes Peninsula CA
- Talking Web Clients with JavaScript and the Speech API Panorama City CA
- Talking Web Clients with JavaScript and the Speech API Paradise CA
- Talking Web Clients with JavaScript and the Speech API Paramount CA
- Talking Web Clients with JavaScript and the Speech API Pasadena CA
- Talking Web Clients with JavaScript and the Speech API Paso Robles CA
- Talking Web Clients with JavaScript and the Speech API Patterson CA
- Talking Web Clients with JavaScript and the Speech API Perris CA
- Talking Web Clients with JavaScript and the Speech API Petaluma CA
- Talking Web Clients with JavaScript and the Speech API Pico Rivera CA
- Talking Web Clients with JavaScript and the Speech API Pinole CA
- Talking Web Clients with JavaScript and the Speech API Pittsburg CA
- Talking Web Clients with JavaScript and the Speech API Placentia CA
- Talking Web Clients with JavaScript and the Speech API Placerville CA
- Talking Web Clients with JavaScript and the Speech API Pleasant Hill CA
- Talking Web Clients with JavaScript and the Speech API Pleasanton CA
- Talking Web Clients with JavaScript and the Speech API Pomona CA
- Talking Web Clients with JavaScript and the Speech API Port Hueneme CA
- Talking Web Clients with JavaScript and the Speech API Porterville CA
- Talking Web Clients with JavaScript and the Speech API Poway CA
- Talking Web Clients with JavaScript and the Speech API Ramona CA
- Talking Web Clients with JavaScript and the Speech API Rancho Cordova CA
- Talking Web Clients with JavaScript and the Speech API Rancho Cucamonga CA
- Talking Web Clients with JavaScript and the Speech API Rancho Palos Verdes CA
- Talking Web Clients with JavaScript and the Speech API Rancho Santa Margarita CA
- Talking Web Clients with JavaScript and the Speech API Red Bluff CA
- Talking Web Clients with JavaScript and the Speech API Redding CA
- Talking Web Clients with JavaScript and the Speech API Redlands CA
- Talking Web Clients with JavaScript and the Speech API Redondo Beach CA
- Talking Web Clients with JavaScript and the Speech API Redwood City CA
- Talking Web Clients with JavaScript and the Speech API Reedley CA
- Talking Web Clients with JavaScript and the Speech API Reseda CA
- Talking Web Clients with JavaScript and the Speech API Rialto CA
- Talking Web Clients with JavaScript and the Speech API Richmond CA
- Talking Web Clients with JavaScript and the Speech API Ridgecrest CA
- Talking Web Clients with JavaScript and the Speech API Riverbank CA
- Talking Web Clients with JavaScript and the Speech API Riverside CA
- Talking Web Clients with JavaScript and the Speech API Rocklin CA
- Talking Web Clients with JavaScript and the Speech API Rohnert Park CA
- Talking Web Clients with JavaScript and the Speech API Rosamond CA
- Talking Web Clients with JavaScript and the Speech API Rosemead CA
- Talking Web Clients with JavaScript and the Speech API Roseville CA
- Talking Web Clients with JavaScript and the Speech API Rowland Heights CA
- Talking Web Clients with JavaScript and the Speech API Sacramento CA
- Talking Web Clients with JavaScript and the Speech API Salinas CA
- Talking Web Clients with JavaScript and the Speech API San Anselmo CA
- Talking Web Clients with JavaScript and the Speech API San Bernardino CA
- Talking Web Clients with JavaScript and the Speech API San Bruno CA
- Talking Web Clients with JavaScript and the Speech API San Carlos CA
- Talking Web Clients with JavaScript and the Speech API San Clemente CA
- Talking Web Clients with JavaScript and the Speech API San Diego CA
- Talking Web Clients with JavaScript and the Speech API San Dimas CA
- Talking Web Clients with JavaScript and the Speech API San Fernando CA
- Talking Web Clients with JavaScript and the Speech API San Francisco CA
- Talking Web Clients with JavaScript and the Speech API San Gabriel CA
- Talking Web Clients with JavaScript and the Speech API San Jacinto CA
- Talking Web Clients with JavaScript and the Speech API San Jose CA
- Talking Web Clients with JavaScript and the Speech API San Juan Capistrano CA
- Talking Web Clients with JavaScript and the Speech API San Leandro CA
- Talking Web Clients with JavaScript and the Speech API San Lorenzo CA
- Talking Web Clients with JavaScript and the Speech API San Luis Obispo CA
- Talking Web Clients with JavaScript and the Speech API San Marcos CA
- Talking Web Clients with JavaScript and the Speech API San Mateo CA
- Talking Web Clients with JavaScript and the Speech API San Pablo CA
- Talking Web Clients with JavaScript and the Speech API San Pedro CA
- Talking Web Clients with JavaScript and the Speech API San Rafael CA
- Talking Web Clients with JavaScript and the Speech API San Ramon CA
- Talking Web Clients with JavaScript and the Speech API San Ysidro CA
-