I created a program that includes many invisible JButtons, but when moving the mouse over them, they all take the background for the upper left JButton, which will make it difficult for their actual use. Also, when placing the mouse on the bottom right, everything resets. Any idea why this happens? Thanks.
Images for When initiating the program and When using the mouse
In case it serves, the way I make the buttons (which are extensions of JButton) invisible is by having the paint overriding function do nothing.
public void paint(Graphics g) {
}
As an aside, don't mess with painting methods to get invisibility. Here is how to do it.