stop sounds
stop sounds
- Started
- Last post
- 3 Responses
- Buckyball2
I have a radio spot in a scene. When I click the "close" button to return to the main scene, the spot keeps playing. I know this is most likely a simple fix. Just trying to figure out how to code it correctly.
I have these actions attached to the button:'
on (release) {
gotoAndPlay ("HOME", 178);
}
stopAllSounds();
}Does it look wrong? Right?
Basically want it to do 2 things. Return and stop the audio upon click.
Thanks,
bB
- Buckyball20
bump sounds()
}
- jkosoy0
on (release)
{
stopAllSounds();
gotoAndPlay ("HOME", 178);
}/// ;)
- Buckyball20
WHO DA MAN?
thanks.