Page 1 of 1

stopSound channel...

PostPosted: Tue Jul 17, 2012 2:02 pm
by friedfish
i know stopSound stops a sounds we want to stop but how do we know the channel of the sound? :) anyone know? thanks... :)

Re: stopSound channel...

PostPosted: Tue Jul 17, 2012 2:59 pm
by Kalladdolf
The channel is a variable you determine to contain your sound.
So make a global variable called "SFX" for instance.
When you'd like your song to be played:
Code: Select all
SFX = PlaySound();

And when you'd like it to be stopped:
Code: Select all
StopSound(SFX);

Re: stopSound channel...

PostPosted: Tue Jul 17, 2012 3:22 pm
by friedfish
oh thanks... so playsound returns an int... gotta read that documentation...

Kalladdolf+=1;

Re: stopSound channel...

PostPosted: Tue Jul 17, 2012 7:46 pm
by skydereign
friedfish wrote:oh thanks... so playsound returns an int... gotta read that documentation...

Kalladdolf+=1;

For the record, to give someone a point you need to click the [+] under their username.

Re: stopSound channel...

PostPosted: Tue Jul 17, 2012 10:08 pm
by friedfish
haha... I did not see that... so that's how they get the points...I need to give you some points sky... :)