I've seen some other discussions, and I've tried most of the code they suggest in there, but I keep getting an error saying that it can't open the mp3 file cause it can't find it. Help please!
GreenfootSound backgroundMusic = new GreenfootSound( "idk.mp3" );
public TitleScreen()
{
// Create a new world with 800x500 cells with a cell size of 1x1 pixels.
super(800, 500, 1);
backgroundMusic.playLoop();
Greenfoot.start();
}

