Hello Everyone..
How can i make every click on menu there sound?
Thats the menu code i have, what shoul i do ?
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 | import greenfoot.*; public class MenuUtama2 extends Actor { public void act() { if (Greenfoot.mouseClicked( this )) { Greenfoot.setWorld( new MenuUtama()); } } } |