How to use soundpool in Sketchware?

The soundpool component is used to play sounds of smaller duration in android apps and a single soundpool component can be used to play multiple sounds. Now suppose you have three sounds which you want to use in a game at different instances. To use the sounds follow the steps given below. 1. Open the Sketchware project in which you want to use the sounds. Go to sound manager and add the three sounds which you want to use. 2. Now add a soundpool component (named ' sounds ' in the image below) in the Logic section of your app. 3. After this go to onCreate event and add a number variable (named sound in the image below). 4. Then in onCreate event, first use the block: SoundPool (name) create max stream count.... Since here three sounds are being used set max stream count to 3. After that use SoundID:SoundPool (name) load (sound name) and set the number variable to load the three sounds one by one, as shown in the image below. This will set the SoundID of...