There are a number of choices:
jsmooth (jsmooth.sourceforge.net) is GPL and quite friendly
jstart32 (jstart32.sourceforge.net) is also GPL - a little less smooth looking but it also works
There are several others but they are mostly not free (at least not for commercial use - j2exe for...
This is probably too late for you, but it sounds as if you have written an application, not an applet.
While an application works by call a static void main method, an applet must extend java.applet.
The browser will then call the class's start() method when the applet is to start.
You can...
Matty, I suspect that your problem is because main is static (as it has to be) but push is not. Therefore to call push from main you need an instance of your class.
There are two ways to get round this:
1. At the start of main, put
Test3 myTest3 = new Test3(); //create an instance of test3...
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.