Hello folks!
Can't start and stop the sound with the buttons..
Here the fla file:
Thanks in Advance
Regards, Oliver
Can't start and stop the sound with the buttons..
Here the fla file:
Thanks in Advance
Regards, Oliver
Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
// init sound
sndStream = new Sound(this);
sndStream.loadSound("fessler_lowqual.mp3",true);
// start sound
// sndStream.start();
on(release) {
_root.sndStream.start();
}
on(release) {
_root.sndStream.stop();
}