Right, so I already looked at multiple questions regarding something close to this but not what I need help with.
What my issue is, what would I call so that when "New" is clicked, a new Frame would open (the same but just opened again). The system prints out the string, so I know it's working. I just need to figure out how to open a new window.
mntmNew.addActionListener(new ActionListener() {
@Override
public void actionPerformed(ActionEvent arg0) {
System.out.println("Opening a new window.");
}
});