In JDK 1.7 I use setUndecorated(true);
and setBackground(new Color(0, 0, 0, 0));
to make my frame transparent.
This works perfectly but when I change the project to 1.6 this same code just makes the frame its original blue-ish color. I don't want to make my form Opacity lower as in alpha transparent. I want to have it more like a splash screen, where GD draws SOLID non opacity lines but the surrounding is completely click-through and transparent.
What is the code in 1.6 to do this?