We are about to switch to a new forum software. Until then we have removed the registration on this forum.
Hi,
I Have a playlist stored within an arrayList.
I'm Trying to use the sonia package on Processing 1.5 to play them one after the other.
This is what I have tried
for(int i = 0; i < sample.size(); i++){
sample.get(i).play();
sample.get(i).connectLiveInput(true);
}
Unfortunately, this only makes them play at the same time :/
Help?