xxxxxxxxxx
function setup(){
mySound = loadSound('04_The_Louvre_Instrumental.mp3');
background(200);
}
function mouseClicked() {
mySound.playMode('sustain');
mySound.play();
}
function keyPressed() {
mySound.playMode('restart');
mySound.play();
}