Guest_imported
New member
- Jan 1, 1970
- 0
Hi,
Here is my pb :
I want to open a new browser window from an applet and I also want to remove the toolbar, the scrollbars, the url of this window...
It's easy to open a new window but I cannot figure out how I can remove all the stuff in this one.
sample of code:
AppletContext ac = m_Applet.getAppletContext();
String m_url = "//show in a new unnamed top-level window
String m_target = "_blank";
ac.showDocument(new URL(m_url), m_target);
If you have some ideas,
Thx in advance,
FT
Here is my pb :
I want to open a new browser window from an applet and I also want to remove the toolbar, the scrollbars, the url of this window...
It's easy to open a new window but I cannot figure out how I can remove all the stuff in this one.
sample of code:
AppletContext ac = m_Applet.getAppletContext();
String m_url = "//show in a new unnamed top-level window
String m_target = "_blank";
ac.showDocument(new URL(m_url), m_target);
If you have some ideas,
Thx in advance,
FT