ActionEvent ae = new ActionEvent(jToggleButton1, ActionEvent.ACTION_PERFORMED, jToggleButton1.getActionCommand());
//jToggleButton1.dispatchEvent(ae);
Toolkit.getDefaultToolkit().getSystemEventQueue().postEvent(ae);
neither of these methods seems to do the trick, what am I missing here?