Results 1 to 5 of 5
Thread: small problem
- 03-18-2009, 07:05 PM #1
Member
- Join Date
- Feb 2009
- Posts
- 40
- Rep Power
- 0
- 03-18-2009, 07:07 PM #2
Member
- Join Date
- Feb 2009
- Posts
- 40
- Rep Power
- 0
sorry didnt specify earlier that i have already a button in my applet that closes the applet. im not just using the X on the applets window.
- 03-19-2009, 07:21 AM #3
Senior Member
- Join Date
- Mar 2009
- Location
- USA
- Posts
- 127
- Rep Power
- 0
applet is run on browser so when you close the applet ...browser will close.
- 03-20-2009, 01:45 PM #4
Member
- Join Date
- Feb 2009
- Posts
- 40
- Rep Power
- 0
it's not closing the browser window i think because. the applet it self opens a seperate window for the frame of my applet. so it has its own appletviewer window that seperate from the browser window. is there some script to let the browser window know that the applets window has been closed?
- 03-21-2009, 06:19 AM #5
Not having crossed this issue myself, checking google gave me this...
rgagnon.com/javadetails/java-0282.html
Have a Java button close the browser window - Real's Java How-to
Hopefully this helps! :DJava Code:import java.applet.*; import java.awt.*; import java.awt.event.*; import netscape.javascript.*; public class WinClose extends Applet implements ActionListener{ Button wc = new Button("Close me"); public void init() { wc.setActionCommand("CLOSE"); wc.addActionListener(this); add(wc); } public void actionPerformed(ActionEvent e) { String command = e.getActionCommand(); if (command.equals("CLOSE")) { JSObject win = (JSObject) JSObject.getWindow(this); win.eval("self.close();"); } } }
Similar Threads
-
small problem in connection
By BsBs in forum CLDC and MIDPReplies: 1Last Post: 01-27-2009, 06:03 AM -
A small Question
By Eku in forum JDBCReplies: 7Last Post: 09-01-2008, 06:10 AM -
Urgent small code
By karingulanagaraj in forum New To JavaReplies: 7Last Post: 08-11-2008, 04:11 AM -
Small problem
By ayoood in forum New To JavaReplies: 2Last Post: 06-06-2008, 12:27 PM -
small error
By ayoood in forum New To JavaReplies: 23Last Post: 05-27-2008, 12:18 PM


LinkBack URL
About LinkBacks
Reply With Quote
Bookmarks