How do I make a JButton in java, invisible, but clickable?
button.setVisible(false);
makes the button invisible, but unclickable, is there any method that makes it invisible, but clickable?
I tried doing:
button.setVisible(false);
button.setEnabled(true);
but that didn't work either. I want to do this because I want to have a button with an image, if I put the invisible JButton over the image, the button will respond when you click the image, or invisible button.
new JInvisibleStaticCucumberBoxCatButton()
– Homogenetic