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 7005637
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 27, 20262026-05-27T21:22:34+00:00 2026-05-27T21:22:34+00:00

Is there any way to auto-select a jmenu within my jmenubar when the user’s

  • 0

Is there any way to auto-select a jmenu within my jmenubar when the user’s pressing the “ALT” key ? (Like windows softwares)

The problem is that the default behavior of my jframe, when the “ALT” key is pressed, is to show up a menu containing the following actions : restore, move, size, reduce, …

What I want my java application to do, is to select my jmenu first item when “alt” is pressed.
(Like it would do with a mnemonic : “alt + f”)

  • 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-27T21:22:35+00:00Added an answer on May 27, 2026 at 9:22 pm

    Add the action to the ActionMap and InputMap of your JRootPane. See below:

    import java.awt.event.*;
    import java.util.*;
    import javax.swing.*;
    
    
    public class MenuExample {
    
        private void setupMenuKey(final JFrame frame) {
            Action menuAction = new AbstractAction() {
    
                @Override
                public void actionPerformed(ActionEvent e) {
                    JRootPane rootPane = frame.getRootPane();
                    JMenuBar jMenuBar = rootPane.getJMenuBar();
                    JMenu menu = jMenuBar.getMenu(0);
                    menu.doClick();
                }
            };
    
            JRootPane rootPane = frame.getRootPane();
            ActionMap actionMap = rootPane.getActionMap();
    
            final String MENU_ACTION_KEY = "expand_that_first_menu_please";
            actionMap.put(MENU_ACTION_KEY, menuAction);
            InputMap inputMap = rootPane.getInputMap(JComponent.WHEN_ANCESTOR_OF_FOCUSED_COMPONENT);
            inputMap.put(KeyStroke.getKeyStroke(KeyEvent.VK_ALT, 0, true), MENU_ACTION_KEY);
        }
    
    
        private JFrame build() {
            JFrame frame = new JFrame("Hello");
            frame.setSize(300, 300);
    
            JMenuBar bar = new JMenuBar();
    
            List<String> letters = Arrays.asList("A", "B", "C");
            for (int i = 0; i < 3; i++) {
                JMenu menu = new JMenu("Menu " + i);
                for (String string : letters) {
                    menu.add(new JMenuItem(String.format("Menu %s - %s", i, string)));
                }
                bar.add(menu);
            }
            frame.setJMenuBar(bar);
    
            JButton b = new JButton("click");
            JPanel p = new JPanel();
            p.add(b);
            frame.add(p);
            setupMenuKey(frame);
    
            return frame;
        }
    
        public static void main(String[] args) {
            MenuExample menuExample = new MenuExample();
            JFrame frame = menuExample.build();
            frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
            frame.setVisible(true);
        }
    
    
    }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Is there any clean way to allow a user to select multiple non continuos
Is there any way to pop-up TIPS and pop-over any other windows open? I
Is there any way to get the effect of running python -u from within
Is there any way to select multiple rows in a jqGrid tree structure? On
In VS2010 WF4 workflow designer is there any way to get it to auto
Is there any way to do something like this in django? INSERT INTO t
Is there any way to change the BackColor of the border of a panel
Is there any way I can run class files (i.e. with main as the
Is there any way to view the reduction steps in haskell, i.e trace the
Is there any way to change the icon of an application after it is

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.