i have designed this small, java program, which its main task is to draw my name (paul) using ellipses but with a 3 second delay between each ellipse.
i set out by creating a counter, which 1 is added to it every 3 seconds. i did this by using the actionListener with a delay of 3 secs. I then put a if statement on all the ellipse draw commands eg
if (counter == 1){
g2.draw(ellipse1);
}
i can get the counter working fine but the ellipses will not draw. can anyone help