Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 7543851
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 30, 20262026-05-30T08:32:05+00:00 2026-05-30T08:32:05+00:00

I need enlightenment. how to add action actionListener event bind to the menu, and

  • 0

I need enlightenment.

how to add action actionListener event bind to the menu, and not bind to the menu ITEM
here is the demo code, that works(on menuITEM)..

menuFileItem.addActionListener(
            new ActionListener(){
                public void actionPerformed(ActionEvent e)
                {
                    System.out.println("It works");
                }
            }
        );

but when i try the same , but just on the MENU itself it doesn’t work!

menuFile.addActionListener(
            new ActionListener(){
                public void actionPerformed(ActionEvent e)
                {
                    System.out.println("Plz work... :( ");
                }
            }
        );

is it possible to add listener to menu? i taught listener could be added to everything.

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-30T08:32:06+00:00Added an answer on May 30, 2026 at 8:32 am

    You can add an ActionListener to a JMenu as this method is inherited from AbstractButton. (JMenu Documentation)

    JMenu menu = new JMenu("MyMenu");
    menu.addActionListener(new ActionListener(){...});
    

    But, it is not intended to be used this way: JMenu ignores ActionEvent. You should use MenuEvent and MenuListener instead.

    JMenu menu = new JMenu("MyMenu");
    menu.addMenuListener(new MenuListener() {
            
            @Override
            public void menuSelected(MenuEvent e) {
                System.out.println("menuSelected");
                
            }
            
            @Override
            public void menuDeselected(MenuEvent e) {
                System.out.println("menuDeselected");
                
            }
            
            @Override
            public void menuCanceled(MenuEvent e) {
                System.out.println("menuCanceled");
                
            }
        });
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Need some regular expressions help. So far I have my code working to allow
Need help with a query that I wrote: I have three tables Company id
need a little help with this one. I have a form that I am
Why is the following code NOT working without id or name attribute specified for
Need help with the codeigniter, I think file_exists is for server path, not for
Need help with an error message that I just can't figure out. I am
Need help trying to figure out why the button onCLick event isn't working. I
Need some help understanding the difference between the success and ajaxSuccess events documented here
Need some help please with this error : TypeError : 'unicode' object does not
Need help to convert code from asp control to input type to fetch file

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.