I merged my code from Processing.org into IDEA some time ago as it was just more comfortable to develop. Now I need to export the code to an applet. I already set up the configuration for that task, but it doesn't run with the appletviewer (it just closes after execution without showing anything). Do I need a jar-file? Is there a way to generate this in IDEA automatically?

link|improve this question

feedback

2 Answers

Project Structure | Artifacts.

link|improve this answer
Thanks! Build the jar, but still not running. patrick$ appletviewer -debug App.jar Initializing jdb ... > run run sun.applet.Main Tweeteroids.jar Set uncaught java.lang.Throwable Set deferred uncaught java.lang.Throwable > VM Started: The application exited – Patrick Dec 11 '10 at 15:16
I guess there is some problem with the app itself or with the packaging, not with IDEA. – CrazyCoder Dec 12 '10 at 13:34
appletviewer expects an html file and scans it for OBJECT, EMBED and APPLET tags. You can't feed it a jar. That would fail for your processing generated applet as well. – hlg Jan 12 '11 at 12:25
feedback
up vote 1 down vote accepted

I moved all the code back to Processing.org. It took some time, but at least it works now as an applet.

link|improve this answer
This is capitulation, not a solution ;) – hlg Jan 12 '11 at 12:28
Indeed. But unfortunately couldn't get it to work from IDEA. – Patrick Jan 12 '11 at 14:56
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.