mucho
November 14, 2003, 8:33pm
1
I’ve checked the board and looked for some help, but none of the mp3 loops threads are actually working for me…
this is what I use…
on (release) {
if (mySoundPosition > 0) {
_root.mySound.stop();
_root.mySound.start(0, 9999);
stopped=false;
}
else {
_root.mySound.stop();
_root.mySound = new Sound();
_root.mySound.loadSound(songtitle[count2], true);
_root.mySound.start();
stopped=false;
}
}
…but it won’t loop
ideas, thoughts?
thx,
m.
system
November 14, 2003, 8:39pm
2
What is that button supposed to do ? Is it a replay from beginning button ?
system
November 14, 2003, 8:51pm
3
button is supposed to load and play AND LOOP the mp3 file…
need the fla?
system
November 14, 2003, 8:53pm
4
I’m confused what the mySoundPosition check is doing there…
system
November 14, 2003, 9:07pm
6
I can’t really do much with it since I don’t have the files you have, such as the textfile. But anyways. I suggest you have a look at www.kennybellew.com to learn about the Sound object and MP3 players
system
November 14, 2003, 9:08pm
7
thx, that’s where I have the idea from, it doesn’t explain how to loop mp3’s though on www.kennybellew.com … only linked sound files.