ONLINE HELP
 WINDEVWEBDEV AND WINDEV MOBILE

This content has been translated automatically.  Click here  to view the French version.
Help / WLanguage / WLanguage functions / Standard functions / Windows functions / Miscellaneous WINDEV functions
  • Overview
  • How to?
  • Necessary conditions
  • Using the voice commands in the application
  • Proposing additional options or macro-commands
  • Turn off speech recognition
WINDEV
WindowsLinuxJavaReports and QueriesUser code (UMC)
WEBDEV
WindowsLinuxPHPWEBDEV - Browser code
WINDEV Mobile
AndroidAndroid Widget iPhone/iPadIOS WidgetApple WatchMac Catalyst
Others
Stored procedures
Overview
The applications that you develop can react to the user's voice. For example, some actions (scrolling a table, closing windows, selecting a check box or clicking a button) are automatically supported.
All the standard commands of Windows are supported.
You can also add your own voice commands to your applications. For example, say "Find the form for Mr John Smith" and the corresponding action is performed.
How to?

Necessary conditions

Windows To use the voice commands in your applications, your computer must be equipped with:
  • Windows Vista (or later).
  • a speech recognition program (Dragon Naturally Speaking for example, tests performed with version 9 "Preferred" or "standard").
AndroidiPhone/iPad To use the voice commands in your applications, the service for speech recognition must be installed on the phone. The recognition of the voice commands must be triggered by SpeechRecognitionTrigger.
iPhone/iPad Attention Voice recognition functions can only be used with iOS 10 and higher.
Windows

Using the voice commands in the application

To use the voice commands in the application:
  1. Enable the voice recognition program.
  2. Dictate the captions of menu options or buttons that you want to use.

Proposing additional options or macro-commands

Procedures or functions can be associated with a voice command. All you have to do is associate the procedure with the command via SpeechRecognitionAddCommand. This procedure is linked to the procedure for the current window.
In the procedure, the sentence that triggered the voice command can be retrieved. This enables you to isolate the requested information (name of the customer, name of the city, ...).
You have the ability to delete this association with SpeechRecognitionDeleteCommand.
Example:
// Lance la procédure "Trouver" si la commande vocale est reconnue
nIdVoix is int 
nIdVoix = SpeechRecognitionAddCommand("Trouver", "Trouve la fiche de")
PROCEDURE Trouver(Param1)
sClient is string = Param1[[21 TO ]]
HReadSeekFirst(sClient, PRENOMNOM, sClient)
Windows

Turn off speech recognition

The speech recognition is automatically enabled by default.
To disable the speech recognition in your application, use AAFDisable with the aafSpeechRecognition constant.
Related Examples:
The voice recognition functions Unit examples (WINDEV): The voice recognition functions
[ + ] Using the voice recognition functions.
The voice commands of Windows Vista (or Windows XP, with a specific software) are used to control WINDEV applications with the voice.
A WINDEV application already responds to the voice when the user dictates in an edit control or spells out the caption of a button.
You also have the ability to program a specific voice command to perform a specific action.
Android Speech Synthesis Android (WINDEV Mobile): Android Speech Synthesis
[ + ] This educational example explains how to manage the recognition and the speech synthesis Android.
The speech synthesis is performed by using either the WLanguage functions, or an external JAR file included in the WINDEV Mobile project.
Minimum version required
  • Version 12
This page is also available for…
Comments
Click [Add] to post a comment

Last update: 03/25/2025

Send a report | Local help