Hi!
I have an array loaded with my jButtons (100 count).
I
programmatically call for this array to change the button's color ... this works well.
button.setBackground(new Color(a,b,c));
now ... what I want to do now , is when I
mouse click on any of these buttons ... to have it report its jButton number as a new var.. (they range from 1 to 100)
Can this be done?
Thanks!