Hello Everyone..
How can i make every click on menu there sound?
Thats the menu code i have, what shoul i do ?
import greenfoot.*;
public class MenuUtama2 extends Actor
{
public void act()
{
if(Greenfoot.mouseClicked(this))
{
Greenfoot.setWorld(new MenuUtama());
}
}
}


