Java Swing popup visibility
        Posted  
        
            by Octavio
        on Stack Overflow
        
        See other posts from Stack Overflow
        
            or by Octavio
        
        
        
        Published on 2010-04-23T22:26:57Z
        Indexed on 
            2010/04/23
            22:33 UTC
        
        
        Read the original article
        Hit count: 262
        
Why a popup created like this is shown in front of all windows applications with JRE 1.6.0_18 but it doesn't using 1.6.0_03 ?
PopupFactory popupFactory = new PopupFactory();
    Popup popup= popupFactory.getPopup(null,new JPanel(),200,200);
    popup.show();
        © Stack Overflow or respective owner