I'm making a simulation in Greenfoot for school project. Everything compiles, but the pause, run, and act buttons are all greyed out. What would cause this?
This could happen if your world initialization never terminates (for example if there is an infinite loop). Could you post your world constructor code so we can check it out? It's also possible if the constructor creates an object that has an infinite loop inside of its constructor, or if an object creates another of itself during construction.