Audio Player

id: 749807

category: Help with Scripts

posts: 4

evantparkes evantparkes loading
Is it possible to create an audio player in scratch where you can pause and then upase a sound and it starts at the same spot?
evantparkes evantparkes loading
Can you create an audio player in scratch where you can pause and then upause a sound and it starts at the same spot?
Malicondi Malicondi loading
I don't think there's a way to completely pause, but this almost pauses a song, it just makes it play so slowly it feels like a pause:
when [p v] key pressed
set pitch effect to ((-1) / (0)) :: sound
set volume to (0)%

when [u v] key pressed
clear sound effects ::sound
set volume to (100)%
kooqle kooqle loading
Yes. This might be some inspiration:
https://scratch.mit.edu/projects/633409718/
Hope it helps!