Im running an application at a low FPS so i cant constantly edit and draw objects. The program runs on a JPanel which runs at 10 FPS. I would like to be able to right click objects to edit them, but right now when I do so the JPopUpMenu flickers on and off repeatedly. I can only include so much code so i will give you a summary, basically I have a MouseListener that will create a JPopUpMenu when someone right clicks while holding down the ctrl key. I cant include all the code for my JPanel, but here is the MouseReleased method, which ive determined works over the mouse pressed on this OS. This runs in MouseListener class within the JPanel class. Any advice would be lovely, thanks. EDIT: I have tried making an SSCCE but it performed fine, I will likely just give up as it would be to strenuous to comb through all my code to probably not even find the problem. If you have any other ideas do tell. Thanks.

public void mouseReleased(MouseEvent arg0) {
            if(controlIsPressed && arg0.getButton() == MouseEvent.BUTTON3){
                class PopUpDemo extends JPopupMenu {
                    JMenuItem anItem;
                    public PopUpDemo(){
                        anItem = new JMenuItem("Click Me!");
                        add(anItem);
                    }
                }
                if(arg0.isPopupTrigger()){
                    PopUpDemo menu = new PopUpDemo();
                    menu.show(arg0.getComponent(), arg0.getX(), arg0.getY());
                }
            }
        }
link|improve this question

40% accept rate
2  
"I can only include so much code so.." ..use that space to create an SSCCE. "Any advice would be lovely, thanks." You're welcome. – Andrew Thompson Jul 14 '11 at 3:36
I made one, but it seemed to perform just fine as a scaled down version, i have no idea what to do so i will likely just give up on it. – Colton Jul 14 '11 at 4:03
1  
The thing to do at that point is to start adding lines back in to the SSCCE (in small parts) to make it more like your complete program. Then, the moment it fails, that is the problem. – Andrew Thompson Jul 14 '11 at 4:42
I think i know the problem, but i dont know how to solve it, my JPanel renders using active rendering, drawing on a Image from the createImage() method. Everything is drawn on the getGraphics() call on that Image. I brought over a version of the active rendering but it worked just fine in the scaled down version with very little differences to the code. I more clueless now than ever. – Colton Jul 14 '11 at 16:27
feedback

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
or
required, but never shown

Browse other questions tagged or ask your own question.