I am using this code to change my label's size but nothing happens:
public void act()
{
getImage().setFont(new java.awt.Font("Helvetica", Font.PLAIN, 50));
}
this is the creation code for the label if that helps:
public Label(String text)
{
GreenfootImage img = new GreenfootImage (text.length()*20, 30);
img.drawString (text, 4, 25);
setImage (img);
}
