Link to home
Start Free TrialLog in
Avatar of ranma51
ranma51

asked on

How to create an exit Button in Applet using textpad

hi..

i have created an applet that i would like to create for it an exit button
but i don't know how also i was wondering how can i reset the value of a label that i created.....i would be greatful for ur help.......

ok...to be more clear i want to creat a exit button on my applet a button that will close the applet window
i'm using a textpad 4 utitily to  view the applet... how do i do that.....?????
ASKER CERTIFIED SOLUTION
Avatar of Ovi
Ovi

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Avatar of cs98rpm
cs98rpm

As Ovi says to set your label, text component or whatever to empty you just put in the command call yourLabel.setText("") which sets it to a blank return

For the exit button you will need an ActionEventListener so you can then put in the ActionEvent  System.exit(0);

this will close your applet.

Hope this is of some use to you

Cheers RPM.
Avatar of Mick Barry
Sorry you cannot close an applet. It runs inside another application such as a browser or appletviewer.
Calling System.exit from within an applet will throw a SecurityException.
It doesn't make sense for an applet to be allowed to shutdown your browser.
What do you want to do ? To close the entire IE or netscape window ? You can do this with som javaScript called by java applet.

System.exit(0) makes no sens in applet !!!
You can close the applet by closing the browser window, if this is what you really want. To do so you must use some simple LiveConnect implementation.
You can close the applet by closing the browser window, if this is what you really want. To do so you must use some simple LiveConnect implementation.
mai du-te ba smechere
When you say the applet window you are refering to the browser window or to a separate applet frame window ?
if(browser.window)
  use LiveConnect
else if(separateWindow)
  separateWindow.addWindowListener(new ExitAdapter());
.....

class ExitAdapter extends WindowAdapter {
  public void windowClosing(WindowEvent we) {
    Window w = we.getWindow();
    w.dispose();
    w = null;
  }
}

LiveConnect is netscape specific, so it won't work in IE or other browsers.

Using the java applet, you can't close the browser window wherein your applet is running.
you can only open a new window (not a browser window; a java.awt.Frame) and close this
when you want to, but the original browser window (or appletviewer, etc.) will stay open.

you can only switch to something like a suspend mode in your applet. something like displaying a message similar to "this applet is inactive".

regards,
daniel

daniel-strecker@gmx.net
icq#: 54120485
Wow !!!! It seems that I'll will get some real points from teast for the LiveConnect method. :-)))))
IN YOUR DREAMS ovi :)
maybe that you'll will get some points :-)))

seriously, did i miss something about live connect or similar in ie or why did you write that?
So jumping up and down waving your arms get points these days :-)
are these points any means for an end??? i mean, do they have any sense? would consider offering some points for good answers ;-)
For teast :

Live connect is possible in IE like this :

- unidirectional, from html to applet, calling some applet public methods via document.applet['applet_index in page starting with 0'].someAppletPublicMethod(some parameters);
- bidirectional, using for the html->applet comunication the above method and for applet->html comunication using the netscape.javascript.JSObject and netscape.javascript.JSException classes. The price for including this two classes into the applet project is minimal compared with the functionality.

If you take a look at the archives in Windows/Java/... you will find there the above classes included into the Microsoft VM. So the LiveConnect is fully suported in IE too.
I'm waiting for thwe points NOW :-)))))