Event for when sound has completed playing

I have searched for a while but couldn’t find it. But is there an event that indicates when a sound (i.e. an mp3 file) has finished playing. For example, I would like a button to change text when the sound file has completed.

Thanks so much,
Annie

If you know the duration of the sound clip; this is easily achievable! An event block would be nice too!

Yes, I know the duration of the sound clip. If that’s the case, how do I know when it has finished?

In that case, just use a Timer component set with the duration of the sound clip, and make it start when the sound starts playing. Then you can make use of the when Timer fires event to do whatever you want to achieve, like changing the text of a button.

1 Like

Thanks. I’ll try that.