| Author |
how to change the icon of an menuitem's action
|
Edu Cobi
Greenhorn
Joined: Jan 24, 2004
Posts: 9
|
|
Hello all, I have created a menuitem using an action: *************************************************** ImageIcon iconOff=new ImageIcon("onlineOff.gif"); actionOff=new AbstractAction("Connect/Disconnet",iconOff){ public void actionPerformed(ActionEvent e){ //here I would like to change the imageIcon. } }; JMenuItem newOnOffMI = new JMenuItem(actionOnOff); ******************************************************** How can I change the menuItem's icon? Thanks.
|
 |
Eddie Vanda
Ranch Hand
Joined: Mar 18, 2003
Posts: 281
|
|
check JMenuItem api docco: init(String text, Icon icon) Initializes the menu item with the specified text and icon. You may need to run that code in a method in your main class, called by your action listener, because you may not be able to get at the JMenuItem handle within the handler code.
|
The nice thing about Standards is that there are so many to choose from!
|
 |
 |
|
|
subject: how to change the icon of an menuitem's action
|
|
|