[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[Newsgroup Home]
|
[news.eclipse.platform.swt] Re: Launching Shells from Applets
|
"Grant Gayed" <grant_gayed@xxxxxxxxxx> wrote in message
news:fq6l14$pr7$1@xxxxxxxxxxxxxxxxxxxx
> There are a couple of options for deploying an SWT app on the web:
>
> - JavaWebStart: see http://www.eclipse.org/swt/jws/ (not an applet)
> - investigate RSWT: http://sourceforge.net/projects/rswt (I think this
> uses
> an applet)
Actually I make Applets to launch SWT programs!
Basically Applets just have a simple AWT button for
program launch.
When pressed, it will call the main method that initiate SWT program.
I noticed that multiple instances causing problems. Controlling to 1
I could remove side effects. But I am not sure wheher other
SWT programs will intefere. If so, there should be a SWT level
convention to control the situation.
A final note: must launch from a new
thread! Otherwise, browser will never get until SWT programs
closed.
R.