Quote:
Originally Posted by ckeyrouz
Is it a swing (standalone application)?
How do you launch it?
Post more details please.
|
Yes, it is standalone. The pertinent script to be changed to achieve these ends, I do believe, is found here:
Code:
import javax.swing.*;
public class Main {
public static void main(String[] args) {
startGUI go = new startGUI();
go.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
go.setSize(200, 100);
go.setVisible(true);
}
}