Sound Blocks

Overview

The sound blocks enable you to integrate various audio elements into your app. These blocks allow you to incorporate sounds like music, effects, or recorded audio to enhance the user experience. By using sound blocks, you can create engaging and interactive app environments that include auditory elements.

Advanced Blocks

Each of the first four blocks in the sound blocks drawer has a regular and advanced block. When you first drag one of these blocks into your workspace it will be the regular version. To access the advanced version:

  1. Add the block to your workspace.

  2. Right-click on it.

  3. Select Show advanced block.

Outputs

The advanced blocks return an "error" output block. If there is an error when executing the block, the error block will return an error message. If not, the error block will return a null value.

Play

The "play" block plays a selected sound. This can be an audio file uploaded to your project or a URL that streams audio.

Pause

The "pause" block pauses the audio file currently playing.

Resume

The "resume" block resumes the audio file that was previously paused.

Stop

The "stop" block stops the audio file that is currently playing. A sound that has been stopped cannot be resumed using the "resume" block.

Is Paused?

The "is paused?" block returns true if the named sound file has been played and then paused. Otherwise, it returns false.

Sound File from Recording

The "sound file from recording" block records for the specified number of seconds and then returns the recorded audio.

Start Recording

The "start recording" block starts an untimed audio recording.

Sound File from Stopped Audio Recording

The "sound file from stopped audio recording" block stops a recording initiated by the "start recording" block and returns the recorded sound file.

Last updated