We are about to switch to a new forum software. Until then we have removed the registration on this forum.
Hello, good morning:
I am learning to use the minim library.
if(sound != null) {sound= sound + minim.loadFile("1.mp3") ;}
else {sound= minim.loadFile("1.mp3") ;}
sound.play();
I want to load and paste multiple audio files before playing the sound.
the + does not work, how can I do this?
Greetings and thanks.
Answers
Use an ArrayList.
Thanks for answer,
Do you could help me with a code example?
There are plenty of examples in the documentation and the examples section. Google is your friend.
I'll get you started: http://www.processing.org/reference/ArrayList.html
Thanks,
I think this example can help me :D