Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations IamaSherpa on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

open a new browser window from an applet

Status
Not open for further replies.

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
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top