Use modal JDialog. For example, the code in your init (...) JApplet method may include:
JDialog dialog = new JDialog(SwingUtilities.windowForComponent(this)); dialog.setModal(true); dialog.setSize(...); dialog.setVisible( true );
Or you can just use JOptionPane.showInputDialog (). Again, you simply specify "this" as the parent component of the options bar.
camickr
source share