Question: I need assist on Day 9 How far can you go from here
SketchPad.java
private ClearButton clearButton = new ClearButton(5, 5, 20, Color.WHITE);
Question: I need assist on Day 9 How far can you go from here
SketchPad.java
private ClearButton clearButton = new ClearButton(5, 5, 20, Color.WHITE);
What exactly do you need help with? Are you getting any errors?
yes. I need to change the ink thickness line by coding most if not all numbers and make them named values. when I try to run the code it says Clear Button is unidentified
It seems you need to add another color
private ClearButton clearButton = new ClearButton(5, 5, 20, Color.WHITE, Color.WHITE);
Try that?
This topic was automatically closed 7 days after the last reply. New replies are no longer allowed.