> Thanks for the link. I've found this one, but I'm more interested in real
> transparency. One the even makes the title bar and status bar transparent.
>> Thanks for the link. I've found this one, but I'm more interested in real
>> transparency. One the even makes the title bar and status bar
[quoted text clipped - 4 lines]
>
> - Oliver
Or use JWindow instead of JFrame, as windows don't actually have title
bars and such?
tabun@storm.ca - 26 Jul 2006 08:07 GMT
>>> Thanks for the link. I've found this one, but I'm more interested in
>>> real
[quoted text clipped - 8 lines]
> Or use JWindow instead of JFrame, as windows don't actually have title
> bars and such?
Read up on Java2D and read up on alpha. IMHO they should call it
opaqueness value since as the value get higher the window becomes more
opaque(opposite of transparent).
Yes JWindow and have a look at java.awt.Window and all its parents. The
trick is you can create a window without all the decorations which is
what you want. If you want to change the shape of the main window(i.e.
mostly known as "the Frame" which is why there is a special class for
it), check out the masking and window region operations(union,
intersection...).