I'm working on the Construct 3 platform. When I click Pause Button, all movement of objects ceases but the song (Looped) in the Music File still plays. How can I get the Song to stop playing when the Pause button is pressed? I have the Song in a group and I tried to Deactivate the group, which had not work. Any suggestions? Thanks
- Add a variable called isPause(boolean)
- On touch Pause: toggle isPause
- If isPause = true: stop all or you can Pause the music
- else: play or resume
Develop games in your browser. Powerful, performant & highly capable.
Nice work around. Is the variable: instance or global? Moreover is the variable a: String, Number or Boolean? Also, where is the If located? I see the Else but I can not locate the IF. Thanks
like this:
Thanks.