Loopsound doesn't work!

Archives Forums/BlitzPlus Bug Reports/Loopsound doesn't work!

Pineapple(Posted 2009) [#1]
Global channel=LoadSound("media/track1.mp3")
PlaySound channel
LoopSound channel


Why does this only play the sound once?


GfK(Posted 2009) [#2]
Why does this only play the sound once?
Because you've done it wrong. Its not a bug.

LoopSound first, then PlaySound.


GaryV(Posted 2009) [#3]
I wish all problems could be so simple to fix :(


Stamm(Posted 2010) [#4]
I think you'd have had to write



blackgecko(Posted 2010) [#5]
*looking at the date*

No, you're wrong. It's as GfK said (4 months ago...):
"LoopSound first, then PlaySound."


Global channel=LoadSound("media/track1.mp3")
LoopSound channel
PlaySound channel