|
Duplicate :
|
|
|
Relates :
|
The JavaFX needs to support translucent top-level windows. As it's going to be implemented on top of the JDK6, the 6u4 release needs this feature integrated. It is supposed to be a non-public API like the following:
**********************************************************
package com.sun.awt;
import java.awt.Window;
public class AWTUtilities {
public setOpacity(Window window, int opacity);
}
**********************************************************
|