ok so i have drawn my text using the following method but how do i change the colour to WHITE?
Any help will be great, thank you
1 2 3 4 5 6 | public Label() { GreenfootImage img = new GreenfootImage ( 600 , 400 ); img.drawString( "hello" , 60 , 100 ); setImage(img); } |