Yes I know, there are demos, and there are other discussions, but I saw all those and tried everything I can, but whenever I click a button in my world, it doesn't go to the next world or something. My buttons are also images, not made of rectangles and text made in greenfoot.
I also tried to add in the world, and even the button.
public void act()
{
if (Greenfoot.mouseClicked(storybutton.class))
{
Greenfoot.setWorld(new story());
}
}

