|
|
|
|
|
- Stopping a non-locking sound
- Size of sound files
- Locking sound
- Sound and component
Sound (Function) In french: Son Plays a sound in WAV format. This sound can be: - stored on the disk.
- included in the library (.WDL).
- in an HFSQL memo.
This function can also be used to: - play a system sound.
- play a sound of a given frequency for the desired time.
Remark: A sound card must be installed on the computer. The sound will be played according to the Windows settings (volume, balance, quality, etc.).
Syntax <Name of WAV file>: Character string Full or relative name of file to play. This file can be: - a WAV file.
- an audio file corresponding to all the formats supported by the OS (wav, mp3, 3gp, ogg, etc.). A summary of the supported audio files is available from the following address: http://developer.android.com/guide/appendix/media-formats.html.
Remarks: - Android does not support 32-bit wav files.
- This parameter can correspond to a URL. In this case, it is necessary to add the INTERNET permission when generating the application.
- a file in wav format.
- a file in mp3, wav, wma or m4a format.
<Option>: Optional integer constant Sound execution mode: | | soundDefault (Default value) | The code continues to run as soon as the sound is started. | soundLoop | The sound is played in a loop. Caution: The file to play must be found on disk and not in the library (WDL file). | soundWait | The code is locked as long as the sound is not entirely played. |
Remarks Stopping a non-locking sound A sound played in non-locking mode can be stopped by the following code, called on a user action for example (click, control modification, etc.): Size of sound files Using large WAV files may trigger several problems (not enough RAM to load the sound, system stopped depending on the Windows version, etc.). For large ".WAV" files (several dozen megabytes), we recommend that you use the MCI functions. Locking sound A sound is necessarily locking: - If the sound is stored in a WINDEV library (.WDL file).
- If the sound comes from a binary memo.
Sound and component Sound is a non-blocking function by default. To use Sound in a component without locking the application, you must comply with the following constraints: - The file corresponding to the sound must not be found in the WDL or in the component.
- The file corresponding to the sound must be found in the EXE directory of the application.
Business / UI classification: UI Code
This page is also available for…
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|