Has anyone figured out a way to loop thru soundtracks?
IntelligentDesigner
Member Posts: 517
I have a series of soundtracks that I would like to play, in a 1-2-3-4-5-6-7-1-2-3, etc...fashion
How do you get the soundtrack to link to the next soundtrack when it hits the end of the currently playing one?
Anyone have an idea, please help?
How do you get the soundtrack to link to the next soundtrack when it hits the end of the currently playing one?
Anyone have an idea, please help?
Comments
I have looped 3 tracks in a "programmatic" way!
Make and actor with as many rules as there are sounds.
Then give it a self attribute called sound.
Set sound to 1
Next make a rule:
if sound = 1 - then
----
for (how long specific sound clip is in seconds)
play sound (sound title) - with loop set
after (how long specific sound clip is in seconds)
set sound to 2
------------
And of course the last rule with the last track will set sound back to 1.
----------
-Gamexcb