Full-screen Modal Dialog Splashing
i developed Frame that runs in full-screen mode , and when it invoked in Applet init() method it runs well (by making applet Trusted Applet) ,BUT the modal Dialog splashes when it is moved. This is the code i used to invoke full-screen mode for the frame :
Graphics device = Graphics().
getDefaultScreenDevice() ;
this.dispose();// remove the frame before change screen mode
this.setUndecorated(true);
this.setVisible(true);
this.validate();
device.setFullScreenWindow(this);
this.validate();
device.setDisplayMode(mode);
i tried calling repaint() for all components while activate the frame and it does not work .
IS THIS A BUG IN FULL-SCREEN MODE ?
NB.: am using SDK1.6 (mustang)
if any one have sol Pls reply .
Thanks

